File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -21,23 +21,23 @@ distclean: clean clean-libuv
21
21
compile : clean
22
22
echo " DEF DEBUG = 0" > uvloop/__debug.pxi
23
23
cython -3 uvloop/loop.pyx; rm uvloop/__debug.*
24
- python3 setup.py build_ext --inplace
24
+ python setup.py build_ext --inplace
25
25
26
26
27
27
debug : clean
28
28
echo " DEF DEBUG = 1" > uvloop/__debug.pxi
29
29
cython -3 -a -p uvloop/loop.pyx; rm uvloop/__debug.*
30
- python3 setup.py build_ext --inplace
30
+ python setup.py build_ext --inplace
31
31
32
32
33
33
test :
34
- PYTHONASYNCIODEBUG=1 python3 -m unittest discover -s tests
35
- python3 -m unittest discover -s tests
34
+ PYTHONASYNCIODEBUG=1 python -m unittest discover -s tests
35
+ python -m unittest discover -s tests
36
36
37
37
38
38
sdist : clean compile test clean-libuv
39
- python3 setup.py sdist
39
+ python setup.py sdist
40
40
41
41
42
42
sdist-upload : clean compile test clean-libuv
43
- python3 setup.py sdist upload
43
+ python setup.py sdist upload
You can’t perform that action at this time.
0 commit comments