Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,15 @@ release: dist SmartcardIdentifier.pkg
--title=v"$$(grep '^version *= *' pyproject.toml|sed 's/^version *= *//;s/\"//g')" \
--generate-notes v"$$(grep '^version *= *' pyproject.toml|sed 's/^version *= *//;s/\"//g')" \
SmartcardIdentifier.pkg
python3 -m pip install --upgrade twine --break-system-packages
brew install twine
@echo
@if [ ! -e ~/.pypirc ]; \
then echo "Please create a PyPI API token: https://pypi.org/manage/account/token/"; \
echo "Then save it to your ~/.pypirc file, or enter it as your PyPI password below."; \
echo "Press Enter to continue..."; \
read waiting; \
fi
@python3 -m twine upload --username __token__ 'dist/*'
twine upload --username __token__ 'dist/*'

.PHONY: clean
clean:
Expand Down