Skip to content

Commit 80134f5

Browse files
Merge pull request #142 from cblessing24/fix_makefile
Fix testpypi command in Makefile
2 parents d9c1651 + e4a8fd5 commit 80134f5

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
@@ -14,11 +14,11 @@ sdist:
1414
wheel:
1515
python3 setup.py bdist_wheel >/dev/null 2>&1
1616

17-
pypi:clean sdist wheel
17+
pypi: clean sdist wheel
1818
twine upload dist/*
1919

20-
pypitest: clean sdist wheel
21-
twine upload -r pypitest dist/*
20+
testpypi: clean sdist wheel
21+
twine upload -r testpypi dist/*
2222

2323
clean:
2424
rm -rf dist && rm -rf build && rm -rf *.egg-info

0 commit comments

Comments
 (0)