From e37c166a8bc02a3f1fa3a8100a4a2bbf2d690367 Mon Sep 17 00:00:00 2001 From: Ethan Paul <24588726+enpaul@users.noreply.github.com> Date: Thu, 12 Nov 2020 21:13:55 -0500 Subject: [PATCH] Misc meta fixups Fix dumping pypi API key to stdout when using "make publish" target Fix outdated version in example output of docs --- Makefile | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3d66a2b..3bf0260 100644 --- a/Makefile +++ b/Makefile @@ -33,4 +33,4 @@ test: ## Run the project testsuite(s) poetry run tox --recreate publish: wheel source ## Build and upload to pypi (requires $PYPI_API_KEY be set) - poetry publish --username __token__ --password $(PYPI_API_KEY) + @poetry publish --username __token__ --password $(PYPI_API_KEY) diff --git a/README.md b/README.md index 08af6f3..f4c7da6 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ Confirm that the plugin is installed, and Tox recognizes it, by checking the Tox ~ $: poetry run tox --version 3.20.0 imported from .venv/lib64/python3.8/site-packages/tox/__init__.py registered plugins: - tox-poetry-installer-0.2.2 at .venv/lib64/python3.8/site-packages/tox_poetry_installer.py + tox-poetry-installer-0.5.0 at .venv/lib64/python3.8/site-packages/tox_poetry_installer.py ``` If using Pip, ensure that the plugin is installed to the same environment as Tox: