File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 6
6
import sys
7
7
8
8
9
+ from setuptools import setup , Extension
10
+ from setuptools .command .build_ext import build_ext as build_ext
11
+ from setuptools .command .sdist import sdist as sdist
12
+
13
+
9
14
if sys .platform in ('win32' , 'cygwin' , 'cli' ):
10
15
raise RuntimeError ('uvloop does not support Windows at the moment' )
11
16
17
22
raise RuntimeError ('uvloop requires Python 3.5 or 3.6b3 or greater' )
18
23
19
24
20
- from setuptools import setup , Extension
21
- from setuptools .command .build_ext import build_ext as build_ext
22
- from setuptools .command .sdist import sdist as sdist
23
-
24
-
25
25
VERSION = '0.9.2.dev0'
26
26
CFLAGS = ['-O2' ]
27
27
LIBUV_DIR = os .path .join (os .path .dirname (__file__ ), 'vendor' , 'libuv' )
@@ -117,9 +117,9 @@ def finalize_options(self):
117
117
raise RuntimeError (
118
118
'please install Cython to compile uvloop from source' )
119
119
120
- if Cython .__version__ < '0.24 ' :
120
+ if Cython .__version__ < '0.28 ' :
121
121
raise RuntimeError (
122
- 'uvloop requires Cython version 0.24 or greater' )
122
+ 'uvloop requires Cython version 0.28 or greater' )
123
123
124
124
from Cython .Build import cythonize
125
125
You can’t perform that action at this time.
0 commit comments