Skip to content

Commit 1cdc689

Browse files
committed
fix release test
1 parent 9c4d5f3 commit 1cdc689

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ dev: install-dep
6767
dist: dist/${MODULE}-$(VERSION).tar.gz
6868

6969
dist/${MODULE}-$(VERSION).tar.gz: $(SOURCES)
70-
./setup.py sdist bdist_wheel
70+
python setup.py sdist bdist_wheel
7171

7272
## docs : make the docs
7373
docs: FORCE
@@ -76,7 +76,7 @@ docs: FORCE
7676
## clean : clean up all temporary / machine-generated files
7777
clean: 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

@@ -187,7 +187,7 @@ release-test: FORCE
187187

188188
release: release-test
189189
. testenv2/bin/activate && \
190-
testenv2/src/${MODULE}/setup.py sdist bdist_wheel && \
190+
python testenv2/src/${MODULE}/setup.py sdist bdist_wheel && \
191191
pip install twine && \
192192
twine upload testenv2/src/${MODULE}/dist/* && \
193193
git tag ${VERSION} && git push --tags

0 commit comments

Comments
 (0)