From f29aae3b0e47bd44578f647bd30ee9caf401ca1f Mon Sep 17 00:00:00 2001 From: Tijs Alleman Date: Tue, 8 Oct 2024 22:31:28 -0400 Subject: [PATCH] add test --- docs/guidelines.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/docs/guidelines.md b/docs/guidelines.md index fce4d7b..d522adb 100644 --- a/docs/guidelines.md +++ b/docs/guidelines.md @@ -78,10 +78,16 @@ $ python -m build $ twine check dist/* ``` -4. Use `twine` to upload your package, +4. Use `twine` to upload to testPyPI, visit pySODM's page and check everything looks OK, ```bash -$ twine upload -r pySODM dist/* +$ twine upload -r testpypi dist/* +``` + +5. Followed by the real upload, + +```bash +$ twine upload dist/* ``` Twine will ask you for your username and password. Nicked from [here](https://realpython.com/pypi-publish-python-package/).