Skip to content

Commit fece38d

Browse files
committed
make: python3 -> python
1 parent a3eec03 commit fece38d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Makefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,23 +21,23 @@ distclean: clean clean-libuv
2121
compile: clean
2222
echo "DEF DEBUG = 0" > uvloop/__debug.pxi
2323
cython -3 uvloop/loop.pyx; rm uvloop/__debug.*
24-
python3 setup.py build_ext --inplace
24+
python setup.py build_ext --inplace
2525

2626

2727
debug: clean
2828
echo "DEF DEBUG = 1" > uvloop/__debug.pxi
2929
cython -3 -a -p uvloop/loop.pyx; rm uvloop/__debug.*
30-
python3 setup.py build_ext --inplace
30+
python setup.py build_ext --inplace
3131

3232

3333
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
3636

3737

3838
sdist: clean compile test clean-libuv
39-
python3 setup.py sdist
39+
python setup.py sdist
4040

4141

4242
sdist-upload: clean compile test clean-libuv
43-
python3 setup.py sdist upload
43+
python setup.py sdist upload

0 commit comments

Comments
 (0)