16039: Touch python clients so they run tests with the latest SDK.
[arvados.git] / services / nodemanager / setup.py
index fcfd36339a1550c24fde0ea6d53d3bcb72a523ea..75e8f85fbd1b3bfb4fba3de66ec9d341e06fb5ed 100644 (file)
@@ -40,7 +40,7 @@ setup(name='arvados-node-manager',
           ('share/doc/arvados-node-manager', ['agpl-3.0.txt', 'README.rst', 'arvados-node-manager.service']),
       ],
       install_requires=[
-          'apache-libcloud>=2.3.1.dev1',
+          'apache-libcloud==2.5.0', # 2.6.0 cannot create azure nodes, #15649
           'arvados-python-client{}'.format(pysdk_dep),
           'future',
           'pykka < 2',
@@ -48,16 +48,13 @@ setup(name='arvados-node-manager',
           'setuptools',
           'subprocess32>=3.5.1',
       ],
-      dependency_links=[
-          "https://github.com/curoverse/libcloud/archive/apache-libcloud-2.3.1.dev1.zip"
-      ],
       test_suite='tests',
       tests_require=[
           'requests',
           'pbr<1.7.0',
           'mock>=1.0',
-          'apache-libcloud>=2.3.1.dev1',
+          'apache-libcloud==2.5.0',
           'subprocess32>=3.5.1',
       ],
-      zip_safe=False
-      )
+      zip_safe=False,
+)