summaryrefslogtreecommitdiffstats
path: root/source/l/python-requests/requests.urllib3.version.diff
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2019-05-19 01:10:53 +0000
committer Eric Hameleers <alien@slackware.com>2019-05-19 08:59:47 +0200
commit3fbd9748a313969957a03017b9d9b5476080b129 (patch)
tree58ea8e4c6612257cd50c7696de0d1bb636ed5e52 /source/l/python-requests/requests.urllib3.version.diff
parent38b94979d84c5cfc091fd2290c450d05adccb185 (diff)
downloadcurrent-3fbd9748a313969957a03017b9d9b5476080b129.tar.gz
current-3fbd9748a313969957a03017b9d9b5476080b129.tar.xz
Sun May 19 01:10:53 UTC 201920190519011053
a/file-5.37-x86_64-1.txz: Upgraded. l/python-requests-2.22.0-x86_64-1.txz: Upgraded. n/iputils-20190515-x86_64-1.txz: Upgraded. xap/mozilla-thunderbird-60.7.0-x86_64-1.txz: Upgraded. This is a bugfix release. For more information, see: https://www.mozilla.org/en-US/thunderbird/60.7.0/releasenotes/
Diffstat (limited to 'source/l/python-requests/requests.urllib3.version.diff')
-rw-r--r--source/l/python-requests/requests.urllib3.version.diff26
1 files changed, 0 insertions, 26 deletions
diff --git a/source/l/python-requests/requests.urllib3.version.diff b/source/l/python-requests/requests.urllib3.version.diff
deleted file mode 100644
index 59f55c84f..000000000
--- a/source/l/python-requests/requests.urllib3.version.diff
+++ /dev/null
@@ -1,26 +0,0 @@
---- ./setup.py.orig 2018-12-10 00:13:32.000000000 -0600
-+++ ./setup.py 2019-04-28 13:11:33.836514225 -0500
-@@ -44,7 +44,7 @@
- requires = [
- 'chardet>=3.0.2,<3.1.0',
- 'idna>=2.5,<2.9',
-- 'urllib3>=1.21.1,<1.25',
-+ 'urllib3>=1.21.1,<1.26',
- 'certifi>=2017.4.17'
-
- ]
---- ./requests/__init__.py.orig 2018-12-10 00:13:32.000000000 -0600
-+++ ./requests/__init__.py 2019-04-28 13:13:44.711502000 -0500
-@@ -57,10 +57,10 @@
- # Check urllib3 for compatibility.
- major, minor, patch = urllib3_version # noqa: F811
- major, minor, patch = int(major), int(minor), int(patch)
-- # urllib3 >= 1.21.1, <= 1.24
-+ # urllib3 >= 1.21.1, < 1.26
- assert major == 1
- assert minor >= 21
-- assert minor <= 24
-+ assert minor < 26
-
- # Check chardet for compatibility.
- major, minor, patch = chardet_version.split('.')[:3]