diff options
| author | Cory Benfield <lukasaoz@gmail.com> | 2017-05-09 19:10:31 +0100 |
|---|---|---|
| committer | Cory Benfield <lukasaoz@gmail.com> | 2017-05-09 19:10:31 +0100 |
| commit | 800a074b5d7adbbcaf96a5e6b3754c560f6768ff (patch) | |
| tree | ba1bd692310d03da25950601e29901f5ebe71c05 /setup.py | |
| parent | 508d47dc6e7458f2db3bc3b3bf629e0bdb1b798a (diff) | |
| download | python-requests-800a074b5d7adbbcaf96a5e6b3754c560f6768ff.tar.gz | |
Use sys_platform instead of platform_system
This is more compatible as a marker and so will break fewer people.
Diffstat (limited to 'setup.py')
| -rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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'], }, ) |
