Robert Schweikert
e0831b9c1a
- Version update to 1.15.0 * feature:retries: Add support for retry modes, including ``standard`` and ``adaptive`` modes (`#1972 <https://github.com/boto/botocore/issues/1972>`__) * api-change:``ec2``: Update ec2 client to latest version * api-change:``mediatailor``: Update mediatailor client to latest version * api-change:``securityhub``: Update securityhub client to latest version * api-change:``shield``: Update shield client to latest version - from version 1.14.17 * api-change:``mediapackage-vod``: Update mediapackage-vod client to latest version - from version 1.14.16 * api-change:``glue``: Update glue client to latest version * api-change:``chime``: Update chime client to latest version * api-change:``workmail``: Update workmail client to latest version * api-change:``ds``: Update ds client to latest version * api-change:``ec2``: Update ec2 client to latest version * api-change:``es``: Update es client to latest version * api-change:``neptune``: Update neptune client to latest version - from version 1.14.15 * api-change:``ec2``: Update ec2 client to latest version * api-change:``cognito-idp``: Update cognito-idp client to latest version * api-change:``cloudformation``: Update cloudformation client to latest version - from version 1.14.14 * api-change:``docdb``: Update docdb client to latest version * api-change:``kms``: Update kms client to latest version - from version 1.14.13 * api-change:``robomaker``: Update robomaker client to latest version * api-change:``imagebuilder``: Update imagebuilder client to latest version * api-change:``rds``: Update rds client to latest version - from version 1.14.12 * api-change:``ebs``: Update ebs client to latest version * api-change:``appsync``: Update appsync client to latest version OBS-URL: https://build.opensuse.org/request/show/774996 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:aws/python-botocore?expand=0&rev=63
44 lines
1.3 KiB
Diff
44 lines
1.3 KiB
Diff
diff -Nru botocore-1.15.0.orig/setup.py botocore-1.15.0/setup.py
|
|
--- botocore-1.15.0.orig/setup.py 2020-02-14 20:04:34.000000000 +0100
|
|
+++ botocore-1.15.0/setup.py 2020-02-17 18:15:41.860693280 +0100
|
|
@@ -23,18 +23,18 @@
|
|
raise RuntimeError("Unable to find version string.")
|
|
|
|
|
|
-requires = [
|
|
- 'jmespath>=0.7.1,<1.0.0',
|
|
- 'docutils>=0.10,<0.16',
|
|
- 'python-dateutil>=2.1,<3.0.0',
|
|
-]
|
|
+# requires = [
|
|
+# 'jmespath>=0.7.1,<1.0.0',
|
|
+# 'docutils>=0.10,<0.16',
|
|
+# 'python-dateutil>=2.1,<3.0.0',
|
|
+# ]
|
|
|
|
|
|
-if sys.version_info[:2] == (3, 4):
|
|
- # urllib3 dropped support for python 3.4 in point release 1.25.8
|
|
- requires.append('urllib3>=1.20,<1.25.8')
|
|
-else:
|
|
- requires.append('urllib3>=1.20,<1.26')
|
|
+# if sys.version_info[:2] == (3, 4):
|
|
+# # urllib3 dropped support for python 3.4 in point release 1.25.8
|
|
+# requires.append('urllib3>=1.20,<1.25.8')
|
|
+# else:
|
|
+# requires.append('urllib3>=1.20,<1.26')
|
|
|
|
|
|
|
|
@@ -50,8 +50,8 @@
|
|
package_data={'botocore': ['cacert.pem', 'data/*.json', 'data/*/*.json'],
|
|
'botocore.vendored.requests': ['*.pem']},
|
|
include_package_data=True,
|
|
- install_requires=requires,
|
|
- extras_require={},
|
|
+ # install_requires=requires,
|
|
+ # extras_require={},
|
|
license="Apache License 2.0",
|
|
classifiers=[
|
|
'Development Status :: 5 - Production/Stable',
|