Ondřej Súkup
c3e7e42530
- dropped merged_pr_5049.patch - refreshed requests-no-hardcoded-version.patch * Remove defunct reference to prefetch in Session __attrs__ * Requests no longer outputs password in basic auth usage warning OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-requests?expand=0&rev=138
23 lines
564 B
Diff
23 lines
564 B
Diff
Index: requests-2.23.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'
|
|
|
|
]
|
|
test_requirements = [
|
|
- 'pytest-httpbin==0.0.7',
|
|
+ 'pytest-httpbin>=0.0.7',
|
|
'pytest-cov',
|
|
'pytest-mock',
|
|
'pytest-xdist',
|