From 399638076fd4b30de266d0d11ac3100601810b36 Mon Sep 17 00:00:00 2001 From: Eric Ball Date: Wed, 14 Jul 2021 14:21:39 -0700 Subject: [PATCH] Chore: Unpin requirements Having all requirements pinned was causing problems with dependency resolution in pip. This worked fairly well in older versions, but newer versions of pip are more strict in how they handle dependencies of multiple packages. This was causing v0.31.1, the last version with unpinned requirements, to be installed in cases where lftools was installed alongside packages with conflicting requirements. Issue: RELENG-3792 Change-Id: Ie8fb0dac45da5d3fba803ef66e216341516bc3ab Signed-off-by: Eric Ball --- requirements.txt | 94 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 47 insertions(+), 47 deletions(-) diff --git a/requirements.txt b/requirements.txt index 4116fc66..b56f89f0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,48 +1,48 @@ -appdirs==1.4.3 -aspy.yaml==1.3.0 -attrs==19.3.0 -beautifulsoup4==4.8.2 -boto3==1.11.6 -botocore==1.14.6 -bs4==0.0.1 -certifi==2019.11.28 -cfgv==2.0.1 -chardet==3.0.4 -click==7.1 -defusedxml==0.6.0 -Deprecated==1.2.7 -dnspython==1.16.0 -docker==4.2.0 -email-validator==1.0.5 -filelock==3.0.12 -httplib2==0.17.0 -identify==1.4.11 -idna==2.9 -jsonschema==3.2.0 -lxml==4.5.0 -multi-key-dict==2.0.3 -nodeenv==1.3.5 -oauth2client==4.1.3 -pbr==5.4.4 -pyasn1==0.4.8 -pyasn1-modules==0.2.8 -pygerrit2==2.0.10 -PyGithub==1.46 -PyJWT==1.7.1 -pyrsistent==0.15.7 -python-jenkins==1.7.0 +appdirs +aspy.yaml +attrs +beautifulsoup4 +boto3 +botocore +bs4 +certifi +cfgv +chardet +click +defusedxml +Deprecated +dnspython +docker==4.2.2 +email-validator +filelock +httplib2 +identify +idna +jsonschema +lxml +multi-key-dict +nodeenv +oauth2client +pbr +pyasn1 +pyasn1-modules +pygerrit2 +PyGithub +PyJWT +pyrsistent +python-jenkins PyYAML -requests==2.23.0 -rsa==4.0 -ruamel.yaml==0.16.10 -ruamel.yaml.clib==0.2.0 -six==1.14.0 -soupsieve==2.0 -tabulate==0.8.6 -toml==0.10.0 -tqdm==4.43.0 -urllib3==1.25.8 -websocket-client==0.57.0 -wrapt==1.12.1 -xdg==3.0.2 -openstacksdk==0.56.0 +requests +rsa +ruamel.yaml +ruamel.yaml.clib +six +soupsieve +tabulate +toml +tqdm +urllib3 +websocket-client +wrapt +xdg +openstacksdk -- 2.16.6