[ARVADOS] updated: 2.3.2-68-gcca69b2bb

Git user git at public.arvados.org
Thu Mar 10 15:39:33 UTC 2022


Summary of changes:
 tools/crunchstat-summary/setup.py | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

       via  cca69b2bbee85cae95eb21441fe8807fe40cdcd0 (commit)
      from  15a40cb813860b4540c9ece4b10237d54c5ca8ae (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 cca69b2bbee85cae95eb21441fe8807fe40cdcd0
Author: Peter Amstutz <peter.amstutz at curii.com>
Date:   Thu Mar 10 10:37:37 2022 -0500

    crunchstat-summary pins to current Python SDK version
    
    Same logic as used for arvados-cwl-runner
    
    no issue #
    
    Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz at curii.com>

diff --git a/tools/crunchstat-summary/setup.py b/tools/crunchstat-summary/setup.py
index 8507990f5..a881390e4 100755
--- a/tools/crunchstat-summary/setup.py
+++ b/tools/crunchstat-summary/setup.py
@@ -15,6 +15,11 @@ README = os.path.join(SETUP_DIR, 'README.rst')
 
 import arvados_version
 version = arvados_version.get_version(SETUP_DIR, "crunchstat_summary")
+if os.environ.get('ARVADOS_BUILDING_VERSION', False):
+    pysdk_dep = "=={}".format(version)
+else:
+    # On dev releases, arvados-python-client may have a different timestamp
+    pysdk_dep = "<={}".format(version)
 
 short_tests_only = False
 if '--short-tests-only' in sys.argv:
@@ -38,7 +43,7 @@ setup(name='crunchstat_summary',
           ('share/doc/crunchstat_summary', ['agpl-3.0.txt']),
       ],
       install_requires=[
-          'arvados-python-client',
+          'arvados-python-client{}'.format(pysdk_dep),
       ],
       test_suite='tests',
       tests_require=['pbr<1.7.0', 'mock>=1.0'],

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


hooks/post-receive
-- 




More information about the arvados-commits mailing list