Skip to content

Commit

Permalink
fix: pin uvloop to the lastest Python 3.6 supported version (#952)
Browse files Browse the repository at this point in the history
* fix: pin uvloop to the lastest Python 3.6 supported version

* fix multiple python versions
  • Loading branch information
Kludex authored Feb 10, 2021
1 parent 1291b5d commit bf7dac3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,12 @@ def get_packages(package):
"typing-extensions;" + env_marker_below_38,
]


extra_requirements = [
"websockets==8.*",
"httptools==0.1.* ;" + env_marker_cpython,
"uvloop>=0.14.0 ;" + env_marker_cpython,
"uvloop==0.14.0; python_version == '3.6' and " + env_marker_cpython,
"uvloop>=0.14.0; python_version >= '3.7' and " + env_marker_cpython,
"colorama>=0.4;" + env_marker_win,
"watchgod>=0.6",
"python-dotenv>=0.13",
Expand Down

0 comments on commit bf7dac3

Please sign in to comment.