mirror of https://github.com/MagicStack/uvloop.git
remove cede duplicated in pyprojest.tomil decalaration
"requires-python = '>=3.8.0'" in pyproject.toml is enough. Signed-off-by: Tomasz Kłoczko <kloczek@github.com>
This commit is contained in:
parent
05c0865b9c
commit
665329836e
4
setup.py
4
setup.py
|
@ -1,9 +1,5 @@
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
vi = sys.version_info
|
|
||||||
if vi < (3, 8):
|
|
||||||
raise RuntimeError('uvloop requires Python 3.8 or greater')
|
|
||||||
|
|
||||||
if sys.platform in ('win32', 'cygwin', 'cli'):
|
if sys.platform in ('win32', 'cygwin', 'cli'):
|
||||||
raise RuntimeError('uvloop does not support Windows at the moment')
|
raise RuntimeError('uvloop does not support Windows at the moment')
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue