From d5f8927a5cd4bfd9870f02fea1c66b32191d1fba Mon Sep 17 00:00:00 2001 From: Ernesto Puerta Date: Wed, 22 Feb 2023 11:31:47 +0100 Subject: [PATCH] mgr/dashboard: fix constraints.txt Replaces strict version matching with compatible version syntax. Reference: https://peps.python.org/pep-0440/#version-specifiers Fixes: https://tracker.ceph.com/issues/58827 Signed-off-by: Ernesto Puerta --- src/pybind/mgr/dashboard/constraints.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/pybind/mgr/dashboard/constraints.txt b/src/pybind/mgr/dashboard/constraints.txt index 00e1aad0164f9..1b4595e1d0d78 100644 --- a/src/pybind/mgr/dashboard/constraints.txt +++ b/src/pybind/mgr/dashboard/constraints.txt @@ -1,7 +1,7 @@ -CherryPy==13.1.0 -more-itertools==8.14.0 -PyJWT==2.0.1 -bcrypt==3.1.4 -python3-saml==1.4.1 -requests==2.26 -Routes==2.4.1 +CherryPy~=13.1.0 +more-itertools~=8.14.0 +PyJWT~=2.0.1 +bcrypt~=3.1.4 +python3-saml~=1.4.1 +requests~=2.26 +Routes~=2.4.1 -- 2.39.5