From 55ae3544d5d8c92426cc6b455537e9534085b317 Mon Sep 17 00:00:00 2001 From: S Groesz Date: Wed, 14 Apr 2021 03:27:53 +0000 Subject: [PATCH] add dev notes --- dev.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 dev.md diff --git a/dev.md b/dev.md new file mode 100644 index 0000000..edb16b8 --- /dev/null +++ b/dev.md @@ -0,0 +1,15 @@ +Steps to publish to PyPI: + +1) run `make test` +2) update version in setup.py +3) Tag the current release in git to match the version in setup.py + git tag -a 1.2.0 -m 'Release 1.2.0' +4) commit any pending changes to git + git add . + git commit -m 'commit changes' + git push origin 1.2.0 +5) test publish + ./publish.sh test +6) publish to PyPI + ./publish.sh pypi +