Accepting request 774996 from home:glaubitz:branches:devel:languages:python:aws
- 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
This commit is contained in:
parent
6236a29c83
commit
e0831b9c1a
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1909424c9544f92142c8e551888731e32a99f9c99cfe8d21fea3ec0c32981dae
|
||||
size 6095336
|
3
botocore-1.15.0.tar.gz
Normal file
3
botocore-1.15.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:055da4826f6c9158e4a61549d57a2ce449c27d44ce34ab4c96c7bb7b5c993efc
|
||||
size 6140249
|
@ -1,22 +1,36 @@
|
||||
diff -Nru botocore-1.14.9.orig/setup.py botocore-1.14.9/setup.py
|
||||
--- botocore-1.14.9.orig/setup.py 2020-01-24 20:06:30.000000000 +0100
|
||||
+++ botocore-1.14.9/setup.py 2020-01-30 11:55:56.809459033 +0100
|
||||
@@ -23,10 +23,10 @@
|
||||
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',
|
||||
-requires = [
|
||||
- 'jmespath>=0.7.1,<1.0.0',
|
||||
- 'docutils>=0.10,<0.16',
|
||||
- 'python-dateutil>=2.1,<3.0.0',
|
||||
- 'urllib3>=1.20,<1.26']
|
||||
+# requires = ['jmespath>=0.7.1,<1.0.0',
|
||||
-]
|
||||
+# requires = [
|
||||
+# 'jmespath>=0.7.1,<1.0.0',
|
||||
+# 'docutils>=0.10,<0.16',
|
||||
+# 'python-dateutil>=2.1,<3.0.0',
|
||||
+# 'urllib3>=1.20,<1.26']
|
||||
+# ]
|
||||
|
||||
|
||||
setup(
|
||||
@@ -41,8 +41,8 @@
|
||||
-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,
|
||||
|
@ -1,3 +1,59 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 17 17:30:50 UTC 2020 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- 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
|
||||
* api-change:``lex-models``: Update lex-models client to latest version
|
||||
* api-change:``ecr``: Update ecr client to latest version
|
||||
* api-change:``ec2``: Update ec2 client to latest version
|
||||
* api-change:``codebuild``: Update codebuild client to latest version
|
||||
- from version 1.14.11
|
||||
* api-change:``groundstation``: Update groundstation client to latest version
|
||||
* api-change:``mediaconvert``: Update mediaconvert client to latest version
|
||||
* api-change:``dlm``: Update dlm client to latest version
|
||||
* api-change:``ec2``: Update ec2 client to latest version
|
||||
* api-change:``forecastquery``: Update forecastquery client to latest version
|
||||
* api-change:``securityhub``: Update securityhub client to latest version
|
||||
* api-change:``resourcegroupstaggingapi``: Update resourcegroupstaggingapi client to latest version
|
||||
- from version 1.14.10
|
||||
* api-change:``workmail``: Update workmail client to latest version
|
||||
* api-change:``iot``: Update iot client to latest version
|
||||
* api-change:``cloudfront``: Update cloudfront client to latest version
|
||||
* api-change:``storagegateway``: Update storagegateway client to latest version
|
||||
* api-change:``ssm``: Update ssm client to latest version
|
||||
* api-change:``kafka``: Update kafka client to latest version
|
||||
* api-change:``ec2``: Update ec2 client to latest version
|
||||
- Refresh patches for new version
|
||||
+ hide_py_pckgmgmt.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 30 11:01:59 UTC 2020 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||
Name: python-botocore
|
||||
Version: 1.14.9
|
||||
Version: 1.15.0
|
||||
Release: 0
|
||||
Summary: Python interface for AWS
|
||||
License: Apache-2.0
|
||||
|
Loading…
Reference in New Issue
Block a user