Compare commits

...

4 Commits

Author SHA1 Message Date
Cory Benfield
3618f3f68e v2.14.1 2017-05-09 19:58:39 +01:00
Cory Benfield
f909314652 Changelog for v2.14.1 2017-05-09 19:58:15 +01:00
Cory Benfield
636082fa8f Merge pull request #4007 from Lukasa/use-more-comaptible-marker
Use sys_platform instead of platform_system
2017-05-09 19:55:56 +01:00
Cory Benfield
800a074b5d Use sys_platform instead of platform_system
This is more compatible as a marker and so will break fewer people.
2017-05-09 19:10:31 +01:00
3 changed files with 13 additions and 5 deletions

View File

@@ -3,8 +3,16 @@
Release History
---------------
2.14.0 (XXXX)
+++++++++++++
2.14.1 (2017-05-09)
+++++++++++++++++++
**Bugfixes**
- Changed the dependency markers to widen compatibility with older pip
releases.
2.14.0 (2017-05-09)
+++++++++++++++++++
**Improvements**

View File

@@ -41,8 +41,8 @@ is at <http://python-requests.org>.
"""
__title__ = 'requests'
__version__ = '2.14.0'
__build__ = 0x021400
__version__ = '2.14.1'
__build__ = 0x021401
__author__ = 'Kenneth Reitz'
__license__ = 'Apache 2.0'
__copyright__ = 'Copyright 2016 Kenneth Reitz'

View File

@@ -99,7 +99,7 @@ setup(
extras_require={
'security': ['pyOpenSSL>=0.14', 'cryptography>=1.3.4', 'idna>=2.0.0'],
'socks': ['PySocks>=1.5.6, !=1.5.7'],
'socks:platform_system == "Windows" and python_version<"3.3"': ['win_inet_pton'],
'socks:sys_platform == "win32" and python_version<"3.3"': ['win_inet_pton'],
},
)