Robert Schweikert
1b37ceecb9
- Version update to 1.13.17 * api-change:``sesv2``: Update sesv2 client to latest version * api-change:``dataexchange``: Update dataexchange client to latest version * api-change:``iot``: Update iot client to latest version * api-change:``cloudsearch``: Update cloudsearch client to latest version * api-change:``dlm``: Update dlm client to latest version - from version 1.13.16 * api-change:``transcribe``: Update transcribe client to latest version * api-change:``marketplace-catalog``: Update marketplace-catalog client to latest version * api-change:``dynamodb``: Update dynamodb client to latest version * api-change:``codepipeline``: Update codepipeline client to latest version * api-change:``elbv2``: Update elbv2 client to latest version - from version 1.13.15 * api-change:``ce``: Update ce client to latest version * api-change:``cloudformation``: Update cloudformation client to latest version - from version 1.13.14 * api-change:``cognito-identity``: Update cognito-identity client to latest version * api-change:``ecr``: Update ecr client to latest version - from version 1.13.13 * api-change:``ssm``: Update ssm client to latest version * api-change:``sso``: Update sso client to latest version * api-change:``sso-oidc``: Update sso-oidc client to latest version * api-change:``comprehend``: Update comprehend client to latest version - from version 1.13.12 * api-change:``savingsplans``: Update savingsplans client to latest version - from version 1.13.11 * api-change:``codebuild``: Update codebuild client to latest version * api-change:``budgets``: Update budgets client to latest version * api-change:``efs``: Update efs client to latest version * api-change:``ce``: Update ce client to latest version OBS-URL: https://build.opensuse.org/request/show/748650 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:aws/python-botocore?expand=0&rev=54
80 lines
2.8 KiB
Diff
80 lines
2.8 KiB
Diff
diff -Nru botocore-1.13.17.orig/setup.py botocore-1.13.17/setup.py
|
|
--- botocore-1.13.17.orig/setup.py 2019-11-13 21:01:02.000000000 +0100
|
|
+++ botocore-1.13.17/setup.py 2019-11-14 11:38:38.621872154 +0100
|
|
@@ -23,31 +23,31 @@
|
|
raise RuntimeError("Unable to find version string.")
|
|
|
|
|
|
-requires = ['jmespath>=0.7.1,<1.0.0',
|
|
- 'docutils>=0.10,<0.16']
|
|
+# requires = ['jmespath>=0.7.1,<1.0.0',
|
|
+# 'docutils>=0.10,<0.16']
|
|
|
|
|
|
-if sys.version_info[:2] == (2, 6):
|
|
- # For python2.6 we have a few other dependencies.
|
|
- # First we need an ordered dictionary so we use the
|
|
- # 2.6 backport.
|
|
- requires.append('ordereddict==1.1')
|
|
- # Then we need simplejson. This is because we need
|
|
- # a json version that allows us to specify we want to
|
|
- # use an ordereddict instead of a normal dict for the
|
|
- # JSON objects. The 2.7 json module has this. For 2.6
|
|
- # we need simplejson.
|
|
- requires.append('simplejson==3.3.0')
|
|
- requires.append('python-dateutil>=2.1,<2.7.0')
|
|
-else:
|
|
- requires.append('python-dateutil>=2.1,<2.8.1')
|
|
-
|
|
-if sys.version_info[:2] == (2, 6):
|
|
- requires.append('urllib3>=1.20,<1.24')
|
|
-elif sys.version_info[:2] == (3, 3):
|
|
- requires.append('urllib3>=1.20,<1.23')
|
|
-else:
|
|
- requires.append('urllib3>=1.20,<1.26')
|
|
+# if sys.version_info[:2] == (2, 6):
|
|
+# # For python2.6 we have a few other dependencies.
|
|
+# # First we need an ordered dictionary so we use the
|
|
+# # 2.6 backport.
|
|
+# requires.append('ordereddict==1.1')
|
|
+# # Then we need simplejson. This is because we need
|
|
+# # a json version that allows us to specify we want to
|
|
+# # use an ordereddict instead of a normal dict for the
|
|
+# # JSON objects. The 2.7 json module has this. For 2.6
|
|
+# # we need simplejson.
|
|
+# requires.append('simplejson==3.3.0')
|
|
+# requires.append('python-dateutil>=2.1,<2.7.0')
|
|
+# else:
|
|
+# requires.append('python-dateutil>=2.1,<2.8.1')
|
|
+
|
|
+# if sys.version_info[:2] == (2, 6):
|
|
+# requires.append('urllib3>=1.20,<1.24')
|
|
+# elif sys.version_info[:2] == (3, 3):
|
|
+# requires.append('urllib3>=1.20,<1.23')
|
|
+# else:
|
|
+# requires.append('urllib3>=1.20,<1.26')
|
|
|
|
|
|
setup(
|
|
@@ -62,13 +62,13 @@
|
|
package_data={'botocore': ['cacert.pem', 'data/*.json', 'data/*/*.json'],
|
|
'botocore.vendored.requests': ['*.pem']},
|
|
include_package_data=True,
|
|
- install_requires=requires,
|
|
- extras_require={
|
|
- ':python_version=="2.6"': [
|
|
- 'ordereddict==1.1',
|
|
- 'simplejson==3.3.0',
|
|
- ]
|
|
- },
|
|
+ # install_requires=requires,
|
|
+ # extras_require={
|
|
+ # ':python_version=="2.6"': [
|
|
+ # 'ordereddict==1.1',
|
|
+ # 'simplejson==3.3.0',
|
|
+ # ]
|
|
+ # },
|
|
license="Apache License 2.0",
|
|
classifiers=[
|
|
'Development Status :: 5 - Production/Stable',
|