diff options
| author | Nate Prewitt <Nate.Prewitt@gmail.com> | 2018-06-12 06:38:26 -0700 |
|---|---|---|
| committer | Nate Prewitt <nate.prewitt@gmail.com> | 2018-06-12 07:38:10 -0700 |
| commit | 991e8b76b7a9d21f698b24fa0058d3d5968721bc (patch) | |
| tree | 206e82a62328ab30721985bf1f0f42fe25dce02e /requests | |
| parent | 7e297ed95bdbd1018657f5d6000379ecdfa54423 (diff) | |
| download | python-requests-2.19.0.tar.gz | |
v2.19.0v2.19.0
* Updated HISTORY.rst.
* Moved version pin for idna to allow recent 2.7 release.
* Updated version warning for urllib3 to allow 1.23.
* Updated metadata dunders in __version__.py.
* Removed Python 2.6 trove classifier.
* Removed Python 2.6 reference from README.rst.
Diffstat (limited to 'requests')
| -rw-r--r-- | requests/__init__.py | 4 | ||||
| -rw-r--r-- | requests/__version__.py | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/requests/__init__.py b/requests/__init__.py index 6fa855df..a5b3c9c3 100644 --- a/requests/__init__.py +++ b/requests/__init__.py @@ -57,10 +57,10 @@ def check_compatibility(urllib3_version, chardet_version): # 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.22 + # urllib3 >= 1.21.1, <= 1.23 assert major == 1 assert minor >= 21 - assert minor <= 22 + assert minor <= 23 # Check chardet for compatibility. major, minor, patch = chardet_version.split('.')[:3] diff --git a/requests/__version__.py b/requests/__version__.py index dc33eef6..90d7c29e 100644 --- a/requests/__version__.py +++ b/requests/__version__.py @@ -5,10 +5,10 @@ __title__ = 'requests' __description__ = 'Python HTTP for Humans.' __url__ = 'http://python-requests.org' -__version__ = '2.18.4' -__build__ = 0x021804 +__version__ = '2.19.0' +__build__ = 0x021900 __author__ = 'Kenneth Reitz' __author_email__ = 'me@kennethreitz.org' __license__ = 'Apache 2.0' -__copyright__ = 'Copyright 2017 Kenneth Reitz' +__copyright__ = 'Copyright 2018 Kenneth Reitz' __cake__ = u'\u2728 \U0001f370 \u2728' |
