We try to follow semantic versioning.
- We don't have
0
MINOR or PATCH versionnumbers. Patternsx.0.z
andx.y.0
do not exist. - Testing versions are identified by odd-numbered MINOR versions
- Stable/production versions are identified by even-numbered MINOR versions
- MAJOR versions increase only when significant changes are made
To test changes the package may be built and uploaded to test.pypi.org Preferably changes are done on a separate branch.
- Make the necessary changes...
- In
./pyproject.toml
change the versionnumber under[project]/version
- For testing we change the MINOR version to the next odd value
- The first PATCH version always starts on x.y.1 and increases by +1 with every new build
- Builds with the same versionnumber can't be uploaded to PyPi, so it's not like we have a choice
- Run
./build -b
- Run
./build -t
(installation instructions are displayed on the terminal after the upload) - Test the changes by installing the test package on a computer near you. NOTE: You may have to try twice or wait a couple of minutes for the download to become available from PyPi.
- Rinse and repeat...
- Execute
git commit -a; git push
to commit the changes - After succesfull testing create a pull request to merge the changes into the
master
branch
To distribute a new production version the package must be built and uploaded to pypi.org
- Make the necessary changes...
- Merges from a separate branch are considered MINOR changes
- Fixes etc. may be committed directly to the
master
branch as a new PATCH version
- In
./pyproject.toml
change the versionnumber under[project]/version
- For merges we change the MINOR version to the next even value
- The first PATCH version always starts on x.y.1 and increases by +1 with every new build
- Builds with the same versionnumber can't be uploaded to PyPi, so it's not like we have a choice
- Run
./build -b
- Run
./build -d
(installation instructions are displayed on the terminal after the upload) - Test the changes by installing the distribution package on a computer near you. NOTE: You may have to try twice or wait a couple of minutes for the download to become available from PyPi.
- Rinse and repeat...
- Execute
git commit -a; git push
to commit the changes - After succesfull testing of the distribution package create a new tag on the
master
branch