File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -11,18 +11,18 @@ zipdoc: html
1111
1212sdist : zipdoc
1313 @echo " Building source distribution..."
14- python setup.py sdist
14+ $( PYTHON ) setup.py sdist
1515 @echo " Done building source distribution."
1616 # XXX copy documentation.zip to dist directory.
1717
1818egg : zipdoc
1919 @echo " Building egg..."
20- python setup.py bdist_egg
20+ $( PYTHON ) setup.py bdist_egg
2121 @echo " Done building egg."
2222
2323upload_to_pypi : zipdoc
2424 @echo " Uploading to PyPi..."
25- python setup.py sdist --formats=zip,gztar upload
25+ $( PYTHON ) setup.py sdist --formats=zip,gztar upload
2626
2727trailing-spaces :
2828 find . -name " *[.py|.rst]" -type f | xargs perl -pi -e ' s/[ \t]*$$//'
7070
7171specs :
7272 @echo " Checking specs and autogenerating spec tests"
73- env PYTHONPATH=" .:$( PYTHONPATH) " python tools/checkspecs.py
73+ env PYTHONPATH=" .:$( PYTHONPATH) " $( PYTHON ) tools/checkspecs.py
7474
7575check : check-before-commit # just a shortcut
7676check-before-commit : specs trailing-spaces html test
You can’t perform that action at this time.
0 commit comments