fixed platform from windows to win32

This commit is contained in:
Alec Buckenheimer 2018-02-06 19:56:25 -05:00
parent 82cb182fe7
commit 5ef567405f
3 changed files with 5 additions and 5 deletions

View File

@ -7,6 +7,6 @@ httptools
flake8
pytest==3.3.2
tox
ujson; sys_platform != "windows" and implementation_name == "cpython"
uvloop; sys_platform != "windows" and implementation_name == "cpython"
ujson; sys_platform != "win32" and implementation_name == "cpython"
uvloop; sys_platform != "win32" and implementation_name == "cpython"
gunicorn

View File

@ -1,5 +1,5 @@
aiofiles
httptools
ujson; sys_platform != "windows" and implementation_name == "cpython"
uvloop; sys_platform != "windows" and implementation_name == "cpython"
ujson; sys_platform != "win32" and implementation_name == "cpython"
uvloop; sys_platform != "win32" and implementation_name == "cpython"
websockets

View File

@ -51,7 +51,7 @@ setup_kwargs = {
],
}
env_dependency = '; sys_platform != "windows" and implementation_name == "cpython"'
env_dependency = '; sys_platform != "win32" and implementation_name == "cpython"'
ujson = 'ujson>=1.35' + env_dependency
uvloop = 'uvloop>=0.5.3' + env_dependency