From 9a865f83c094bb8938afaa22c9e9fe5d00f98037 Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Tue, 10 Apr 2018 14:10:25 -0400 Subject: [PATCH] update requirements to support matching global exclusions The match for dependency names is case sensitive, so change "pastedeploy" to "PasteDeploy". The match for dependencies takes the environment markers into account, so add a marker for dnspython to restrict its use to python 2.7. There is a dnspython3 package for use with version 3, and that can be added separately as part of the python 3 porting work. Change-Id: Ia2bb2e1846d734609ea9ff37d2ad1ffd37ced950 Depends-On: https://review.openstack.org/560109 Signed-off-by: Doug Hellmann --- requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 1001be5723..b2a7b6adb6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,11 +2,11 @@ # 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 # http://www.dnspython.org/LICENSE +dnspython>=1.14.0;python_version=='2.7' # http://www.dnspython.org/LICENSE eventlet>=0.17.4 # MIT greenlet>=0.3.1 netifaces>=0.5,!=0.10.0,!=0.10.1 -pastedeploy>=1.3.3 +PasteDeploy>=1.3.3 six>=1.9.0 xattr>=0.4 PyECLib>=1.3.1 # BSD