[ARVADOS] updated: 1.1.0-86-g9aba39e
Git user
git at public.curoverse.com
Wed Oct 18 13:59:31 EDT 2017
Summary of changes:
sdk/cwl/setup.py | 4 ++--
sdk/python/gittaggers.py | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
via 9aba39e6d04b39204f234b40dd6b56eb1c63bb23 (commit)
from bdeaa38c6bdba0f81ffdf32ce44d300b631b07c7 (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 9aba39e6d04b39204f234b40dd6b56eb1c63bb23
Author: Fernando Monserrat <fernando.monserrat at gmail.com>
Date: Wed Oct 18 14:59:20 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 2895589..bb18a5c 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 = subprocess.check_output(
- ['git', 'describe', '--abbrev=0']).strip()
+ gitinfo = str(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/gittaggers.py b/sdk/python/gittaggers.py
index 032658d..4365b0b 100644
--- a/sdk/python/gittaggers.py
+++ b/sdk/python/gittaggers.py
@@ -27,7 +27,7 @@ class EggInfoFromGit(egg_info):
def git_latest_tag(self):
gitinfo = subprocess.check_output(
['git', 'describe', '--abbrev=0']).strip()
- return (gitinfo)
+ return str(gitinfo)
def tags(self):
if self.tag_build is None:
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list