make install
- run with
make run
- manually run pre-commit hooks :
make lint
- create a new branch linked to the issue you want to release
- create a new PR and have it merged
- release-please will create a new release PR
- check it, and aprove it if everything is ok
- release-to-pypi will create a new release and upload it to pypi
- Check version in
.release-please-manifest.json
ENACRESTIC_VERSION=$(poetry run python3 setup.py --version) && echo Working on enacrestic $ENACRESTIC_VERSION
make package
- test new package with
pip install --user dist/enacrestic-${ENACRESTIC_VERSION}.tar.gz
poetry run python3 -m twine upload --repository pypi --verbose dist/enacrestic-${ENACRESTIC_VERSION}*