From 232f4c1e95a3ee905e66f505da970c092fcabaf8 Mon Sep 17 00:00:00 2001 From: Lubos Mjachky Date: Thu, 16 Nov 2023 14:41:05 +0100 Subject: [PATCH] Bump the pulp-cli version [noissue] --- .github/workflows/test.yml | 4 ++-- lower_bounds_constraints.lock | 6 ++++-- pulp-glue-ostree/setup.py | 2 +- setup.py | 2 +- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9a5d9af..7e9bddd 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,9 +21,9 @@ jobs: pulp_api_root: "/relocated/djnd/" - python: "3.6" image_tag: "3.28" + lower_bounds: true - python: "3.7" image_tag: "3.26" - lower_bounds: true - python: "3.8" image_tag: "3.25" - python: "3.9" @@ -31,9 +31,9 @@ jobs: pulp_api_root: "/relocated/djnd/" - python: "3.10" image_tag: "3.35" - lower_bounds: true - python: "3.11" image_tag: "latest" + lower_bounds: true steps: - uses: actions/checkout@v4 - uses: actions/cache@v3 diff --git a/lower_bounds_constraints.lock b/lower_bounds_constraints.lock index a2b7b0a..0180e1d 100644 --- a/lower_bounds_constraints.lock +++ b/lower_bounds_constraints.lock @@ -1,2 +1,4 @@ -pulp-cli==0.18.2 -pulp-glue==0.18.2 +click==8.0.0 +PyYAML==6.0.1 +pulp-cli==0.20.0 +pulp-glue==0.20.0 diff --git a/pulp-glue-ostree/setup.py b/pulp-glue-ostree/setup.py index 884c1cc..87ee381 100644 --- a/pulp-glue-ostree/setup.py +++ b/pulp-glue-ostree/setup.py @@ -29,7 +29,7 @@ packages=plugin_packages, package_data={"": ["py.typed"]}, python_requires=">=3.6", - install_requires=["pulp-glue>=0.18.2,<0.22"], + install_requires=["pulp-glue>=0.20.0"], license="GPLv2+", classifiers=[ "Development Status :: 4 - Beta", diff --git a/setup.py b/setup.py index 688aac5..97fea75 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ packages=plugin_packages, package_data={package: ["py.typed"] for package in plugin_packages}, python_requires=">=3.6", - install_requires=["pulp-cli>=0.18.2,<0.22", "pulp-glue-ostree==0.3.0.dev"], + install_requires=["pulp-cli>=0.20.0", "pulp-glue-ostree==0.3.0.dev"], entry_points={ "pulp_cli.plugins": [f"{name}={module}" for name, module in plugin_entry_points], },