X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/c0a9b9a3291e14c75711d5849dc5365e2166fccd..09cbdc3074b3f1e69c9c537875146f6da0a6ed8f:/sdk/python/setup.py diff --git a/sdk/python/setup.py b/sdk/python/setup.py index a726b49fe3..1daafc97ad 100644 --- a/sdk/python/setup.py +++ b/sdk/python/setup.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (C) The Arvados Authors. All rights reserved. # # SPDX-License-Identifier: Apache-2.0 @@ -48,22 +48,22 @@ setup(name='arvados-python-client', install_requires=[ 'ciso8601 >=2.0.0', 'future', - 'google-api-python-client >=1.6.2, <1.7', - 'httplib2 >=0.9.2', - 'pycurl >=7.19.5.1', - 'ruamel.yaml >=0.15.54, <=0.16.5', + 'google-api-core <2.11.0', # 2.11.0rc1 is incompatible with google-auth<2 + 'google-api-python-client >=1.6.2, <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', 'ws4py >=0.4.2', + 'protobuf<4.0.0dev', + 'pyparsing<3', + 'setuptools>=40.3.0', ], - extras_require={ - ':os.name=="posix" and python_version<"3"': ['subprocess32 >= 3.5.1'], - ':python_version<"3"': ['pytz'], - }, classifiers=[ - 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 3', ], test_suite='tests', - tests_require=['pbr<1.7.0', 'mock>=1.0,<4', 'PyYAML'], + tests_require=['pbr<1.7.0', 'mock>=1.0,<4', 'PyYAML', 'parameterized'], zip_safe=False )