Blacklists pbr version 1.7.0 as it is not working with mock 1.3.0
[arvados.git] / services / nodemanager / setup.py
index 891b04f384a69a1acf2d4dd8c77dcebbe73b08b5..d090868d96ba3069ad518f60b915e5bf4b128801 100644 (file)
@@ -25,14 +25,17 @@ setup(name='arvados-node-manager',
       license='GNU Affero General Public License, version 3.0',
       packages=find_packages(),
       install_requires=[
-        'apache-libcloud',
-        'arvados-python-client',
+        'apache-libcloud>=0.16',
+        'arvados-python-client>=0.1.20150206225333',
         'pykka',
         'python-daemon',
         ],
+      dependency_links = [
+          "https://github.com/curoverse/libcloud/archive/apache-libcloud-0.18.1.dev3.zip"
+      ],
       scripts=['bin/arvados-node-manager'],
       test_suite='tests',
-      tests_require=['mock>=1.0'],
+      tests_require=['pbr!=1.7.0', 'mock>=1.0', "apache-libcloud==0.18.1.dev3"],
       zip_safe=False,
       cmdclass={'egg_info': tagger},
       )