File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ dev: install-dep
6767dist : dist/${MODULE}-$(VERSION ) .tar.gz
6868
6969dist/${MODULE}-$(VERSION ) .tar.gz : $(SOURCES )
70- ./ setup.py sdist bdist_wheel
70+ python setup.py sdist bdist_wheel
7171
7272# # docs : make the docs
7373docs : FORCE
@@ -76,7 +76,7 @@ docs: FORCE
7676# # clean : clean up all temporary / machine-generated files
7777clean : FORCE
7878 rm -f ${MODILE} /* .pyc tests/* .pyc
79- ./ setup.py clean --all || true
79+ python setup.py clean --all || true
8080 rm -Rf .coverage
8181 rm -f diff-cover.html
8282
@@ -173,7 +173,7 @@ release-test: FORCE
173173
174174release : release-test
175175 . testenv2/bin/activate && \
176- testenv2/src/${MODULE} /setup.py sdist bdist_wheel && \
176+ python testenv2/src/${MODULE} /setup.py sdist bdist_wheel && \
177177 pip install twine && \
178178 twine upload testenv2/src/${MODULE} /dist/* && \
179179 git tag ${VERSION} && git push --tags
You can’t perform that action at this time.
0 commit comments