From: Ernesto Puerta Date: Thu, 23 Feb 2023 16:22:10 +0000 (+0100) Subject: mgr/dashboard: fix constraints.txt again X-Git-Tag: v18.1.0~290^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F50238%2Fhead;p=ceph.git mgr/dashboard: fix constraints.txt again The previous attempt to fix this issue (https://github.com/ceph/ceph/pull/50207) was not successful, since the PIP syntax for compatible versions (~=) behaves differently compared to other package management tools (e.g.: npm). In this case, package~=x.y.z equasl to package>=x.y.z;package==x.y.*, instead of the desired package>=x.y.z;package==x.*. Fixes: tracker.ceph.com/issues/58827 Signed-off-by: Ernesto Puerta --- diff --git a/src/pybind/mgr/dashboard/constraints.txt b/src/pybind/mgr/dashboard/constraints.txt index 1b4595e1d0d7..55f81c92dec0 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 +CherryPy~=13.1 +more-itertools~=8.14 +PyJWT~=2.0 +bcrypt~=3.1 +python3-saml~=1.4 requests~=2.26 -Routes~=2.4.1 +Routes~=2.4