Accepting request 851065 from devel:languages:python

- update to 2.25.0:
  * Added support for NETRC environment variable. (#5643)
  * Requests now supports urllib3 v1.26.
  * Requests v2.25.x will be the last release series with support for Python 3.5.
- refreshed requests-no-hardcoded-version.patch

OBS-URL: https://build.opensuse.org/request/show/851065
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-requests?expand=0&rev=66
This commit is contained in:
Dominique Leuenberger 2020-12-03 17:37:27 +00:00 committed by Git OBS Bridge
commit ffc7d71d48
5 changed files with 17 additions and 17 deletions

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Thu Nov 26 12:37:34 UTC 2020 - Dirk Mueller <dmueller@suse.com>
- update to 2.25.0:
* Added support for NETRC environment variable. (#5643)
* Requests now supports urllib3 v1.26.
* Requests v2.25.x will be the last release series with support for Python 3.5.
- refreshed requests-no-hardcoded-version.patch
-------------------------------------------------------------------
Thu Jul 23 18:47:44 UTC 2020 - Sebastian Wagner <sebix+novell.com@sebix.at>

View File

@ -26,7 +26,7 @@
%endif
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-requests%{psuffix}
Version: 2.24.0
Version: 2.25.0
Release: 0
Summary: Python HTTP Library
License: Apache-2.0

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b3559a131db72c33ee969480840fff4bb6dd111de7dd27c8ee1f820f4f00231b
size 115071

3
requests-2.25.0.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7f1a0b932f4a60a1a65caa4263921bb7d9ee911957e0ae4a23a6dd08185ad5f8
size 101897

View File

@ -1,17 +1,8 @@
Index: requests-2.23.0/setup.py
Index: requests-2.25.0/setup.py
===================================================================
--- requests-2.23.0.orig/setup.py
+++ requests-2.23.0/setup.py
@@ -42,14 +42,14 @@ if sys.argv[-1] == 'publish':
packages = ['requests']
requires = [
- 'chardet>=3.0.2,<4',
- 'idna>=2.5,<3',
+ 'chardet>=3.0.2',
+ 'idna>=2.5',
'urllib3>=1.21.1,<1.26,!=1.25.0,!=1.25.1',
'certifi>=2017.4.17'
--- requests-2.25.0.orig/setup.py
+++ requests-2.25.0/setup.py
@@ -49,7 +49,7 @@ requires = [
]
test_requirements = [