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
67
67
dist : dist/${MODULE}-$(VERSION ) .tar.gz
68
68
69
69
dist/${MODULE}-$(VERSION ) .tar.gz : $(SOURCES )
70
- ./ setup.py sdist bdist_wheel
70
+ python setup.py sdist bdist_wheel
71
71
72
72
# # docs : make the docs
73
73
docs : FORCE
@@ -76,7 +76,7 @@ docs: FORCE
76
76
# # clean : clean up all temporary / machine-generated files
77
77
clean : FORCE
78
78
rm -f ${MODILE} /* .pyc tests/* .pyc
79
- ./ setup.py clean --all || true
79
+ python setup.py clean --all || true
80
80
rm -Rf .coverage
81
81
rm -f diff-cover.html
82
82
@@ -187,7 +187,7 @@ release-test: FORCE
187
187
188
188
release : release-test
189
189
. testenv2/bin/activate && \
190
- testenv2/src/${MODULE} /setup.py sdist bdist_wheel && \
190
+ python testenv2/src/${MODULE} /setup.py sdist bdist_wheel && \
191
191
pip install twine && \
192
192
twine upload testenv2/src/${MODULE} /dist/* && \
193
193
git tag ${VERSION} && git push --tags
You can’t perform that action at this time.
0 commit comments