15209: Fixes pysdk dependency strings on pam, fuse & nodemanager.
authorLucas Di Pentima <ldipentima@veritasgenetics.com>
Thu, 27 Jun 2019 18:14:10 +0000 (15:14 -0300)
committerLucas Di Pentima <ldipentima@veritasgenetics.com>
Thu, 27 Jun 2019 18:14:10 +0000 (15:14 -0300)
Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <ldipentima@veritasgenetics.com>

sdk/pam/setup.py
services/fuse/setup.py
services/nodemanager/setup.py

index 807c948f1b3db651476456d349289ace101f9b4c..063ca2625c094cddab39694718f3a111e7d84f07 100755 (executable)
@@ -49,7 +49,7 @@ setup(name='arvados-pam',
           ('share/doc/arvados-pam/examples', glob.glob('examples/*')),
       ],
       install_requires=[
-          'arvados-python-client=={}'.format(pysdk_dep),
+          'arvados-python-client{}'.format(pysdk_dep),
       ],
       test_suite='tests',
       tests_require=['pbr<1.7.0', 'mock>=1.0', 'python-pam'],
index d95fc1d8114912b0b787ebd7bb4e7bc87aecffb0..0439d7d0ca1c8c314b8308d394e0ed528e3744b8 100644 (file)
@@ -43,7 +43,7 @@ setup(name='arvados_fuse',
           ('share/doc/arvados_fuse', ['agpl-3.0.txt', 'README.rst']),
       ],
       install_requires=[
-        'arvados-python-client=={}'.format(pysdk_dep),
+        'arvados-python-client{}'.format(pysdk_dep),
         # llfuse 1.3.4 fails to install via pip
         'llfuse >=1.2, <1.3.4',
         'python-daemon',
index 20d9f2cc5874d5cbf4559025a4226f84cd27fbd7..fcfd36339a1550c24fde0ea6d53d3bcb72a523ea 100644 (file)
@@ -41,7 +41,7 @@ setup(name='arvados-node-manager',
       ],
       install_requires=[
           'apache-libcloud>=2.3.1.dev1',
-          'arvados-python-client=={}'.format(pysdk_dep),
+          'arvados-python-client{}'.format(pysdk_dep),
           'future',
           'pykka < 2',
           'python-daemon',