summaryrefslogtreecommitdiff
path: root/requirements.txt
diff options
context:
space:
mode:
authorSean McGinnis <sean.mcginnis@gmail.com>2019-03-22 10:23:36 -0500
committerTim Burke <tim.burke@gmail.com>2019-03-22 11:41:56 -0700
commit10cb205fe0556769dc688c9059d8802f49a4ee07 (patch)
tree537872cf8d2d042c67567ba53b772f3fca89c69e /requirements.txt
parent65660faf697a9787845de1ccd689715b1d2f1b59 (diff)
downloadswift-10cb205fe0556769dc688c9059d8802f49a4ee07.tar.gz
Fix lower-constraint deps handling
When the lower-constraints tox target was added, it was assumed the install_command was just running the install and that the dependencies and constraints were being set using "deps = ". This fixed the install_command and deps to follow the expected pattern so the lower-constraints job actual does install the lower constraints. Also: * raise the minimum for netifaces as the existing version would fail to load * pin oslo.log to the minimum required by our minimum keystonemiddleware * fix up some error handling for ancient versions of pastedeploy * specify that we shouldn't install xattr on a platform we don't support anyway, because reasons Change-Id: Ie78c0dabe12e01109db2b6412166c3564b87ee96 Signed-off-by: Sean McGinnis <sean.mcginnis@gmail.com>
Diffstat (limited to 'requirements.txt')
-rw-r--r--requirements.txt14
1 files changed, 7 insertions, 7 deletions
diff --git a/requirements.txt b/requirements.txt
index df5d26b69..3e59ee4c1 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -2,15 +2,15 @@
# of appearance. Changing the order has an impact on the overall integration
# process, which may cause wedges in the gate later.
-dnspython>=1.14.0;python_version=='2.7' # http://www.dnspython.org/LICENSE
-eventlet>=0.17.4,!=0.23.0 # MIT
+dnspython>=1.14.0;python_version=='2.7' # http://www.dnspython.org/LICENSE
+eventlet>=0.17.4,!=0.23.0 # MIT
greenlet>=0.3.1
-netifaces>=0.5,!=0.10.0,!=0.10.1
+netifaces>=0.8,!=0.10.0,!=0.10.1
PasteDeploy>=1.3.3
lxml>=3.4.1
-requests>=2.14.2 # Apache-2.0
+requests>=2.14.2 # Apache-2.0
six>=1.9.0
-xattr>=0.4
+xattr>=0.4;sys_platform!='win32' # MIT
PyECLib>=1.3.1 # BSD
-cryptography!=2.0,>=1.6 # BSD/Apache-2.0
-ipaddress>=1.0.16;python_version<'3.3' # PSF
+cryptography!=2.0,>=1.8.2 # BSD/Apache-2.0
+ipaddress>=1.0.16;python_version<'3.3' # PSF