fixed platform from windows to win32
This commit is contained in:
parent
82cb182fe7
commit
5ef567405f
|
@ -7,6 +7,6 @@ httptools
|
||||||
flake8
|
flake8
|
||||||
pytest==3.3.2
|
pytest==3.3.2
|
||||||
tox
|
tox
|
||||||
ujson; sys_platform != "windows" and implementation_name == "cpython"
|
ujson; sys_platform != "win32" and implementation_name == "cpython"
|
||||||
uvloop; sys_platform != "windows" and implementation_name == "cpython"
|
uvloop; sys_platform != "win32" and implementation_name == "cpython"
|
||||||
gunicorn
|
gunicorn
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
aiofiles
|
aiofiles
|
||||||
httptools
|
httptools
|
||||||
ujson; sys_platform != "windows" and implementation_name == "cpython"
|
ujson; sys_platform != "win32" and implementation_name == "cpython"
|
||||||
uvloop; sys_platform != "windows" and implementation_name == "cpython"
|
uvloop; sys_platform != "win32" and implementation_name == "cpython"
|
||||||
websockets
|
websockets
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -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
|
ujson = 'ujson>=1.35' + env_dependency
|
||||||
uvloop = 'uvloop>=0.5.3' + env_dependency
|
uvloop = 'uvloop>=0.5.3' + env_dependency
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user