Skip to content

Commit

Permalink
Updated PyPI publish setting
Browse files Browse the repository at this point in the history
* No longer need to PGP sign and upload .asc to PyPI
  https://blog.pypi.org/posts/2023-05-23-removing-pgp/
  • Loading branch information
victorskl committed Oct 5, 2024
1 parent 03294d5 commit 5c3cf03
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ ver: dist/yawsso-$(version).tar.gz
@echo $(version)

testpypi: dist/yawsso-$(version).tar.gz
@python3 -m twine upload --repository testpypi --sign dist/yawsso-$(version).*
@python3 -m twine upload --repository testpypi --sign dist/yawsso-$(version)-*
@python3 -m twine upload --repository testpypi dist/yawsso-$(version).tar.gz
@python3 -m twine upload --repository testpypi dist/yawsso-$(version)-*.whl

pypi: dist/yawsso-$(version).tar.gz
@python3 -m twine upload --sign dist/yawsso-$(version).*
@python3 -m twine upload --sign dist/yawsso-$(version)-*
@python3 -m twine upload dist/yawsso-$(version).tar.gz
@python3 -m twine upload dist/yawsso-$(version)-*.whl

0 comments on commit 5c3cf03

Please sign in to comment.