Skip to content

Commit

Permalink
Merge pull request #368 from AltSchool/twine-changes
Browse files Browse the repository at this point in the history
update makefile twine usage for pypi pushes
  • Loading branch information
suavesav committed Mar 26, 2024
2 parents dcd9cfe + 8b5a7a5 commit 3063dfb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ endef
pypi_upload_test: install
$(call header,"Uploading new version to PyPi - test")
@. $(INSTALL_DIR)/bin/activate; python setup.py sdist
@twine upload --repository testpypi dist/*
@$(INSTALL_DIR)/bin/twine upload --repository testpypi dist/*

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

docs: install
$(call header,"Building docs")
Expand Down

0 comments on commit 3063dfb

Please sign in to comment.