X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/74cdb4454d4adc6b403c207169313f37332d8aac..4c138e32f5c8c565a2031017e26827d37688b037:/services/fuse/setup.py diff --git a/services/fuse/setup.py b/services/fuse/setup.py index be9e4e64a5..c6f9424fdd 100644 --- a/services/fuse/setup.py +++ b/services/fuse/setup.py @@ -13,7 +13,8 @@ cmd_opts = {'egg_info': {}} try: git_tags = subprocess.check_output( ['git', 'log', '--first-parent', '--max-count=1', - '--format=format:%ct %h', SETUP_DIR]).split() + '--format=format:%ct %h', SETUP_DIR], + stderr=open('/dev/null','w')).split() assert len(git_tags) == 2 except (AssertionError, OSError, subprocess.CalledProcessError): pass @@ -36,7 +37,7 @@ setup(name='arvados_fuse', 'bin/arv-mount' ], install_requires=[ - 'arvados-python-client>=0.1.1411069908.8ba7f94', # 2014-09-18 + 'arvados-python-client>=0.1.20141103223015.68dae83', 'llfuse', 'python-daemon' ],