File tree 2 files changed +4
-1
lines changed 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 23
23
$(PYTHON ) setup.py build_ext --inplace --debug \
24
24
--cython-always \
25
25
--cython-annotate \
26
- --cython-directives linetrace=True \
26
+ --cython-directives= " linetrace=True" \
27
27
--define ASYNCPG_DEBUG,CYTHON_TRACE,CYTHON_TRACE_NOGIL
28
28
29
29
Original file line number Diff line number Diff line change @@ -32,12 +32,15 @@ class build_ext(_build_ext.build_ext):
32
32
'run cythonize() even if .c files are present' ),
33
33
('cython-annotate' , None ,
34
34
'Produce a colorized HTML version of the Cython source.' ),
35
+ ('cython-directives=' , None ,
36
+ 'Cythion compiler directives' ),
35
37
]
36
38
37
39
def initialize_options (self ):
38
40
super (build_ext , self ).initialize_options ()
39
41
self .cython_always = False
40
42
self .cython_annotate = None
43
+ self .cython_directives = None
41
44
42
45
def finalize_options (self ):
43
46
need_cythonize = self .cython_always
You can’t perform that action at this time.
0 commit comments