Welcome to the MoSAIC
Maintenance Guideline¶
This guide will give you an overview of how to publish a new version of MoSAIC. In the following we will refer to the new version as v1.*.*
. This needs to be substituted to the current version, e.g. v1.1.3
.
Prepare New Release¶
Please ensure that,
1. the version number in setup.py
and src/MoSAIC/__init__.py
are bumped,
1. a new tag is created via git tag v1.*.*
and pushed git push --tags
, and
1. the changelog includes the new tag and all changes of the release.
As an example see for e.g. the commit of v0.3.2
, d43073
.
Build and Upload to PyPI¶
For an introduction, please take a look at the PyPI manual.
First ensure that all needed dependencies are installed
python -m pip install --upgrade pip
python -m pip install --upgrade build
python -m pip install --upgrade twine
To create the build, please ensure first that the directory dist
does not exist. Otherwise delete it,
rm dist
python3 -m build
dist
including the source distributions:
dist/
├── mosaic-clustering-1.*.*-py3-none-any.whl
└── mosaic-clustering-1.*.*.tar.gz
python3 -m twine upload dist/*
Update on Conda-Forge¶
Once a new version is published on PyPI, the conda-forge bot will automatically create a pull request on mosaic-clustering-feedstock.