Skip to content

Commit aeda65b

Browse files
committed
v2.22.0
1 parent 68e581f commit aeda65b

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

Pipfile.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

requests/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@ def check_compatibility(urllib3_version, chardet_version):
5757
# Check urllib3 for compatibility.
5858
major, minor, patch = urllib3_version # noqa: F811
5959
major, minor, patch = int(major), int(minor), int(patch)
60-
# urllib3 >= 1.21.1, <= 1.24
60+
# urllib3 >= 1.21.1, <= 1.25
6161
assert major == 1
6262
assert minor >= 21
63-
assert minor <= 24
63+
assert minor <= 25
6464

6565
# Check chardet for compatibility.
6666
major, minor, patch = chardet_version.split('.')[:3]

requests/__version__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
__title__ = 'requests'
66
__description__ = 'Python HTTP for Humans.'
77
__url__ = 'http://python-requests.org'
8-
__version__ = '2.21.0'
9-
__build__ = 0x022100
8+
__version__ = '2.22.0'
9+
__build__ = 0x022200
1010
__author__ = 'Kenneth Reitz'
1111
__author_email__ = 'me@kennethreitz.org'
1212
__license__ = 'Apache 2.0'
13-
__copyright__ = 'Copyright 2018 Kenneth Reitz'
13+
__copyright__ = 'Copyright 2019 Kenneth Reitz'
1414
__cake__ = u'\u2728 \U0001f370 \u2728'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def run_tests(self):
4444
requires = [
4545
'chardet>=3.0.2,<3.1.0',
4646
'idna>=2.5,<2.9',
47-
'urllib3>=1.21.1,<1.25',
47+
'urllib3>=1.21.1,<1.26,!=1.25.0,!=1.25.1',
4848
'certifi>=2017.4.17'
4949

5050
]

0 commit comments

Comments
 (0)