From c856cb5095e454c1733bd6f0053e59e2b884d644 Mon Sep 17 00:00:00 2001 From: Ward Vandewege Date: Thu, 15 Dec 2016 14:52:05 -0500 Subject: [PATCH] We should not hardcode dependencies in our packages for secondary dependencies of our dependencies. If you catch my drift. pyasn1-modules is a dependency of oauth2client which is a dependency of google-api-python-client. Which is a dependency of arvados-python-client. Pinning a dependency on pyasn1-modules=0.0.5 in arvados-python-client does not make sense. It also does not appear to be necessary at all. And it currently breaks the CentOS7 package build. refs #10713 Revert "8654: Pin pyasn1_modules to version that is compatible with pyasn1==0.1.7." This reverts commit 436105d3e249ad8dc55fb618d0d2c0d8ed29b395. --- sdk/python/setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/sdk/python/setup.py b/sdk/python/setup.py index 9d7d2481fd..d470ab4d00 100644 --- a/sdk/python/setup.py +++ b/sdk/python/setup.py @@ -46,7 +46,6 @@ setup(name='arvados-python-client', install_requires=[ 'google-api-python-client==1.4.2', 'oauth2client >=1.4.6, <2', - 'pyasn1-modules==0.0.5', 'ciso8601', 'httplib2', 'pycurl >=7.19.5.1, <7.21.5', -- 2.30.2