[arvados] updated: 2.6.0-587-g9d70bbd825

git repository hosting git at public.arvados.org
Fri Sep 8 13:41:03 UTC 2023


Summary of changes:
 sdk/python/setup.py | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

       via  9d70bbd8258e1223e89c14992dfe7ac1d56a11ae (commit)
      from  540e89bcb91a9f2f1f2828083eea632581953aa8 (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 9d70bbd8258e1223e89c14992dfe7ac1d56a11ae
Author: Tom Clegg <tom at curii.com>
Date:   Fri Sep 8 09:39:38 2023 -0400

    Avoid Python3.7 incompatibility introduced in typing_extensions 4.8.
    
    refs #20905
    
    Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tom at curii.com>

diff --git a/sdk/python/setup.py b/sdk/python/setup.py
index e9107a4fd6..9ba9629bca 100644
--- a/sdk/python/setup.py
+++ b/sdk/python/setup.py
@@ -119,17 +119,18 @@ setup(name='arvados-python-client',
           'future',
           'google-api-core <2.11.0', # 2.11.0rc1 is incompatible with google-auth<2
           'google-api-python-client >=2.1.0',
-          'google-auth<2',
+          'google-auth <2',
           'httplib2 >=0.9.2, <0.20.2',
           'pycurl >=7.19.5.1, <7.45.0',
           'ruamel.yaml >=0.15.54, <0.17.22',
-          'setuptools>=40.3.0',
-          'typing_extensions>=3.7.4; python_version<"3.8"',
+          'setuptools >=40.3.0',
+          # As of 4.8.0rc1, typing_extensions does not parse in Python 3.7
+          'typing_extensions >=3.7.4, <4.8; python_version<"3.8"',
           'ws4py >=0.4.2',
-          'protobuf<4.0.0dev',
-          'pyparsing<3',
-          'setuptools>=40.3.0',
-          "dataclasses ;python_version<'3.7'",
+          'protobuf <4.0.0dev',
+          'pyparsing <3',
+          'setuptools >=40.3.0',
+          'dataclasses; python_version<"3.7"',
       ],
       classifiers=[
           'Programming Language :: Python :: 3',

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


hooks/post-receive
-- 




More information about the arvados-commits mailing list