File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -11,18 +11,18 @@ zipdoc: html
11
11
12
12
sdist : zipdoc
13
13
@echo " Building source distribution..."
14
- python setup.py sdist
14
+ $( PYTHON ) setup.py sdist
15
15
@echo " Done building source distribution."
16
16
# XXX copy documentation.zip to dist directory.
17
17
18
18
egg : zipdoc
19
19
@echo " Building egg..."
20
- python setup.py bdist_egg
20
+ $( PYTHON ) setup.py bdist_egg
21
21
@echo " Done building egg."
22
22
23
23
upload_to_pypi : zipdoc
24
24
@echo " Uploading to PyPi..."
25
- python setup.py sdist --formats=zip,gztar upload
25
+ $( PYTHON ) setup.py sdist --formats=zip,gztar upload
26
26
27
27
trailing-spaces :
28
28
find . -name " *[.py|.rst]" -type f | xargs perl -pi -e ' s/[ \t]*$$//'
70
70
71
71
specs :
72
72
@echo " Checking specs and autogenerating spec tests"
73
- env PYTHONPATH=" .:$( PYTHONPATH) " python tools/checkspecs.py
73
+ env PYTHONPATH=" .:$( PYTHONPATH) " $( PYTHON ) tools/checkspecs.py
74
74
75
75
check : check-before-commit # just a shortcut
76
76
check-before-commit : specs trailing-spaces html test
You can’t perform that action at this time.
0 commit comments