1.25.11
This commit is contained in:
parent
dba4767e3e
commit
99fe52cec1
1
.gitignore
vendored
1
.gitignore
vendored
@ -572,3 +572,4 @@
|
||||
/botocore-1.25.7.tar.gz
|
||||
/botocore-1.25.8.tar.gz
|
||||
/botocore-1.25.10.tar.gz
|
||||
/botocore-1.25.11.tar.gz
|
||||
|
20
2507.patch
20
2507.patch
@ -1,18 +1,6 @@
|
||||
From ec30ecf89f8788da139f73d9140de66fc21848d5 Mon Sep 17 00:00:00 2001
|
||||
From: Hugo van Kemenade <hugovk@users.noreply.github.com>
|
||||
Date: Thu, 30 Sep 2021 15:21:40 +0300
|
||||
Subject: [PATCH] Replace deprecated inspect.formatargspec with
|
||||
inspect.signature
|
||||
|
||||
---
|
||||
botocore/docs/method.py | 8 +-------
|
||||
1 file changed, 1 insertion(+), 7 deletions(-)
|
||||
|
||||
diff --git a/botocore/docs/method.py b/botocore/docs/method.py
|
||||
index dbadd94313..e75a0e8e5c 100644
|
||||
--- a/botocore/docs/method.py
|
||||
+++ b/botocore/docs/method.py
|
||||
@@ -96,13 +96,7 @@ def document_custom_signature(section, name, method,
|
||||
--- a/botocore/docs/method.py~ 2022-05-10 13:06:42.000000000 -0500
|
||||
+++ b/botocore/docs/method.py 2022-05-11 14:29:40.467083093 -0500
|
||||
@@ -101,13 +101,7 @@
|
||||
:param exclude: The names of the parameters to exclude from
|
||||
documentation.
|
||||
"""
|
||||
@ -21,7 +9,7 @@ index dbadd94313..e75a0e8e5c 100644
|
||||
- args=argspec.args[1:],
|
||||
- varargs=argspec.varargs,
|
||||
- varkw=argspec.varkw,
|
||||
- defaults=argspec.defaults
|
||||
- defaults=argspec.defaults,
|
||||
- )
|
||||
+ signature_params = str(inspect.signature(method))
|
||||
signature_params = signature_params.lstrip('(')
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
Name: python-%{pypi_name}
|
||||
# NOTICE - Updating this package requires updating python-boto3
|
||||
Version: 1.25.10
|
||||
Version: 1.25.11
|
||||
Release: 1%{?dist}
|
||||
Summary: Low-level, data-driven core of boto 3
|
||||
|
||||
@ -70,6 +70,9 @@ rm -vr tests/functional/leak
|
||||
%{python3_sitelib}/%{pypi_name}-*.dist-info/
|
||||
|
||||
%changelog
|
||||
* Wed May 11 2022 Gwyn Ciesla <gwync@protonmail.com> - 1.25.11-1
|
||||
- 1.25.11
|
||||
|
||||
* Mon May 09 2022 Gwyn Ciesla <gwync@protonmail.com> - 1.25.10-1
|
||||
- 1.25.10
|
||||
|
||||
|
2
sources
2
sources
@ -1 +1 @@
|
||||
SHA512 (botocore-1.25.10.tar.gz) = 6daaec14be1cafdf43bdb4b182a31649d88ee3a9b7e2a88409e3a9fc5279479f78800a0b49ec405936e6695ac4c1b672a62b31b2486049193734ade98f275a10
|
||||
SHA512 (botocore-1.25.11.tar.gz) = 2afe95fc0ee2d50e87c6ffc8cbd189fea71f0a97ce508c01642f0a736cb2fe220531324366fddad3e725bc81ca4ef3ffdf2c281c3c89075cae5416f5722b1b1d
|
||||
|
Loading…
Reference in New Issue
Block a user