[ARVADOS] updated: 1.1.0-87-gf8186e7

Git user git at public.curoverse.com
Wed Oct 18 14:05:38 EDT 2017


Summary of changes:
 sdk/cwl/setup.py    | 4 ++--
 sdk/python/setup.py | 1 +
 2 files changed, 3 insertions(+), 2 deletions(-)

       via  f8186e7d6a7eb02b3305f5c2010a5727029693bf (commit)
      from  9aba39e6d04b39204f234b40dd6b56eb1c63bb23 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit f8186e7d6a7eb02b3305f5c2010a5727029693bf
Author: Fernando Monserrat <fernando.monserrat at gmail.com>
Date:   Wed Oct 18 15:05:28 2017 -0300

    12389: Fix for last digit in version for python versions
    Arvados-DCO-1.1-Signed-off-by: Fernando Monserrat <fmonserrat at veritasgenetics.com>

diff --git a/sdk/cwl/setup.py b/sdk/cwl/setup.py
index bb18a5c..2895589 100644
--- a/sdk/cwl/setup.py
+++ b/sdk/cwl/setup.py
@@ -21,8 +21,8 @@ except ImportError:
 
 versionfile = os.path.join(SETUP_DIR, "arvados_cwl/_version.py")
 try:
-    gitinfo = str(subprocess.check_output(
-            ['git', 'describe', '--abbrev=0']).strip())
+    gitinfo = subprocess.check_output(
+            ['git', 'describe', '--abbrev=0']).strip()
     with open(versionfile, "w") as f:
         f.write("__version__ = '%s'\n" % gitinfo)
 except Exception as e:
diff --git a/sdk/python/setup.py b/sdk/python/setup.py
index d017bb8..2488d9a 100644
--- a/sdk/python/setup.py
+++ b/sdk/python/setup.py
@@ -24,6 +24,7 @@ if '--short-tests-only' in sys.argv:
     sys.argv.remove('--short-tests-only')
 
 setup(name='arvados-python-client',
+      version='1.0',
       description='Arvados client library',
       long_description=open(README).read(),
       author='Arvados',

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list