From 0c4863d8059b51f5f6c2b0afff217c72aac36994 Mon Sep 17 00:00:00 2001 From: Matthias Dellweg Date: Mon, 22 Jan 2024 13:19:51 +0100 Subject: [PATCH] Add upper bound on pulp-cli 0.22 [noissue] --- CHANGES/+constraints.bugfix | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 CHANGES/+constraints.bugfix diff --git a/CHANGES/+constraints.bugfix b/CHANGES/+constraints.bugfix new file mode 100644 index 0000000..886b8c4 --- /dev/null +++ b/CHANGES/+constraints.bugfix @@ -0,0 +1 @@ +Add version constrains to the compatibility with `pulp-cli`. diff --git a/setup.py b/setup.py index dfb7fa2..bddef64 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,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", "pulp-glue-maven==0.3.0.dev"], + install_requires=["pulp-cli>=0.18.2,<0.23.0.dev0", "pulp-glue-maven==0.3.0.dev"], entry_points={ "pulp_cli.plugins": [f"{name}={module}" for name, module in plugin_entry_points], },