We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53203bf commit d0a59b0Copy full SHA for d0a59b0
Makefile
@@ -32,14 +32,14 @@ distclean: clean clean-libuv
32
33
compile: check-env clean
34
echo "DEF DEBUG = 0" > uvloop/__debug.pxi
35
- cython -3 uvloop/loop.pyx; rm uvloop/__debug.*
+ $(PYTHON) -m cython -3 uvloop/loop.pyx; rm uvloop/__debug.*
36
@echo "$$UVLOOP_BUILD_PATCH_SCRIPT" | $(PYTHON)
37
$(PYTHON) setup.py build_ext --inplace
38
39
40
debug: check-env clean
41
echo "DEF DEBUG = 1" > uvloop/__debug.pxi
42
- cython -3 -a -p uvloop/loop.pyx; rm uvloop/__debug.*
+ $(PYTHON) -m cython -3 -a -p uvloop/loop.pyx; rm uvloop/__debug.*
43
44
45
0 commit comments