Skip to content

Commit

Permalink
build: keep twine output quiet
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Mar 14, 2024
1 parent 3f75d80 commit fb36364
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 @@ -198,10 +198,10 @@ kit: ## Make the source distribution.
python -m build

kit_upload: ## Upload the built distributions to PyPI.
twine upload --verbose dist/*
twine upload dist/*

test_upload: ## Upload the distributions to PyPI's testing server.
twine upload --verbose --repository testpypi --password $$TWINE_TEST_PASSWORD dist/*
twine upload --repository testpypi --password $$TWINE_TEST_PASSWORD dist/*

kit_local:
# pip.conf looks like this:
Expand Down

0 comments on commit fb36364

Please sign in to comment.