Skip to content

Latest commit

 

History

History
executable file
·
27 lines (19 loc) · 693 Bytes

DEVELOP.rst

File metadata and controls

executable file
·
27 lines (19 loc) · 693 Bytes

Development Help

Adding a remote github repository

Since github removed password authentication it is best to just set up permanent access with the personal access token like this:

git remote add origin https:://[username]:[access token]@github.com/[username]/[repo].git

Releasing new version

This is a summary of the steps required to release a new version

poetry lock
poetry version [ major | minor | patch ]
poetry build
poetry publish --username='...' --password='...'
git commit -a -m "..."
git push origin master