summaryrefslogtreecommitdiffstats
path: root/install-deps.sh
diff options
context:
space:
mode:
authorNizamudeen A <nia@redhat.com>2023-07-19 16:05:05 +0200
committerNizamudeen A <nia@redhat.com>2023-07-20 13:46:34 +0200
commitd179b95ddf57f8ca48633aed9f6229e39ad83fef (patch)
treeaa09b028523c3ddb9b4b0c27c73145475c856076 /install-deps.sh
parentMerge pull request #52465 from zdover23/wip-doc-2023-07-15-rados-configuratio... (diff)
downloadceph-d179b95ddf57f8ca48633aed9f6229e39ad83fef.tar.xz
ceph-d179b95ddf57f8ca48633aed9f6229e39ad83fef.zip
install-deps: remove the legacy resolver flags
This was a workaround that was introduced long time ago. This will be something that could be deprectaed at some point [1]. And its preventing some of the dependencies to be downloaded or stored into the wheelhouse. Deps like jsonschema, parse, mypy, cryptography etc. [1] https://pip.pypa.io/en/latest/user_guide/#deprecation-timeline Fixes: https://tracker.ceph.com/issues/62082 Signed-off-by: Nizamudeen A <nia@redhat.com>
Diffstat (limited to 'install-deps.sh')
-rwxr-xr-xinstall-deps.sh5
1 files changed, 1 insertions, 4 deletions
diff --git a/install-deps.sh b/install-deps.sh
index bd11b1a0a4a..611aaeccf24 100755
--- a/install-deps.sh
+++ b/install-deps.sh
@@ -270,10 +270,7 @@ function populate_wheelhouse() {
pip $PIP_OPTS $install \
'setuptools >= 0.8' 'pip >= 21.0' 'wheel >= 0.24' 'tox >= 2.9.1' || return 1
if test $# != 0 ; then
- # '--use-feature=fast-deps --use-deprecated=legacy-resolver' added per
- # https://github.com/pypa/pip/issues/9818 These should be able to be
- # removed at some point in the future.
- pip --use-feature=fast-deps --use-deprecated=legacy-resolver $PIP_OPTS $install $@ || return 1
+ pip $PIP_OPTS $install $@ || return 1
fi
}