Relax version limit of python-daemon dependencies.
[arvados.git] / services / fuse / setup.py
index 3af3c84efb9e6dafe5e81911bd7e752f64004d33..7c845311be39ed9528e702432b82f322088f8412 100644 (file)
@@ -24,9 +24,10 @@ class TagBuildWithCommit(egg_info):
             assert len(git_tags) == 2
             git_tags[0] = time.strftime(
                 '%Y%m%d%H%M%S', time.gmtime(int(git_tags[0])))
-            self.tag_build = '.{}.{}'.format(*git_tags)
+            self.tag_build = '.{}+{}'.format(*git_tags)
         return egg_info.tags(self)
 
+
 setup(name='arvados_fuse',
       version='0.1',
       description='Arvados FUSE driver',
@@ -41,9 +42,9 @@ setup(name='arvados_fuse',
         'bin/arv-mount'
         ],
       install_requires=[
-        'arvados-python-client>=0.1.20141103223015.68dae83',
+        'arvados-python-client>=0.1.20141203150737.277b3c7',
         'llfuse',
-        'python-daemon'
+        'python-daemon',
         ],
       test_suite='tests',
       tests_require=['PyYAML'],