Clone the repository and setup virtualenv:
git clone https://github.com/acoustid/mbslave.git cd mbslave/ virtualenv -p python3 venv source venv/bin/activate pip install poetry poetry install
Run these scripts to update SQL files:
./scripts/update_sql.sh
Change the version number in
mbslave/__init__.py
.Add notes to
CHANGELOG.rst
Tag the repository:
git tag -s vX.Y.Z
Upload the package to PyPI:
rm -rf dist/ python setup.py sdist twine upload dist/mbslave-*.tar.gz