Skip to content

Commit

Permalink
Other Makefile changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jamescooke committed Nov 3, 2023
1 parent 690689f commit 6b7c42c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ docs:
# Generate version signature used in README.rst
.PHONY: signature
signature:
tox exec -e py311-meta_plugin_dogfood -- flake8 --version
tox exec -e py312-meta_plugin_dogfood -- flake8 --version

.PHONY: clean
clean:
Expand All @@ -58,11 +58,11 @@ bdist_wheel:

.PHONY: testpypi
testpypi: clean sdist bdist_wheel
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
twine upload --username=__token__ --repository-url https://test.pypi.org/legacy/ dist/*

.PHONY: pypi
pypi: sdist bdist_wheel
twine upload --repository-url https://upload.pypi.org/legacy/ dist/*
twine upload --username=__token__ --repository-url https://upload.pypi.org/legacy/ dist/*

.PHONY: on_master
on_master:
Expand Down

0 comments on commit 6b7c42c

Please sign in to comment.