Skip to content

Commit 3063dfb

Browse files
authored
Merge pull request AltSchool#368 from AltSchool/twine-changes
update makefile twine usage for pypi pushes
2 parents dcd9cfe + 8b5a7a5 commit 3063dfb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ endef
1313
pypi_upload_test: install
1414
$(call header,"Uploading new version to PyPi - test")
1515
@. $(INSTALL_DIR)/bin/activate; python setup.py sdist
16-
@twine upload --repository testpypi dist/*
16+
@$(INSTALL_DIR)/bin/twine upload --repository testpypi dist/*
1717

1818
pypi_upload: install
1919
$(call header,"Uploading new version to PyPi")
2020
@. $(INSTALL_DIR)/bin/activate; python setup.py sdist
21-
@twine upload dist/*
21+
@$(INSTALL_DIR)/bin/twine upload --repository dynamic-rest dist/*
2222

2323
docs: install
2424
$(call header,"Building docs")

0 commit comments

Comments
 (0)