Some of this is covered by the Github action, but for posterity, to release a new version of widgyts on PyPI:
- Update package.json and setup.cfg to update version and remove
dev
git add package.json setup.cfg
git commit -m "Bumping version"
python setup.py sdist upload # Covered by the GHA
python setup.py bdist_wheel upload # Covered by the GHA
git tag -a vX.X.X -m 'comment'
git push --tags
jlpm install # Covered by the GHA
jlpm publish # Covered by the GHA