Automatic semantic versioning for python projects
Project description
Automatic semantic versioning for python projects. This is an python implementation of the semantic-release for js by Stephan Bönnemann. If you find this topic interesting you should check out his talk from JSConf Budapest.
The general idea is to be able to detect what the next version of the project should be based on the commits. This tool will use that to automate the whole release, upload to PyPI and upload changelogs to Github. You can run the tool with a CI service or just run it locally.
Setup in your project
Install it
pip install python-semantic-release
Configure it
There are a three different ways to configure semantic-release.
[semantic_release] section in setup.cfg
[tool.semantic_release] section in pyproject.toml
Passing -D to the command like semantic-release <command> -D <option_name>=<option_value>
The important thing to configure for all projects is where the version variable is stored. This is used to get the current version and updating it. The config variable for that is version_variable. If your project main package is super_package and the version with name __version__ variable is in __init__.py then you can set it too version_variable = super_package/__init__.py:__version__.
For the basic setup this should be all you need to, for further reading on supported config variables check the Configuration page in the documentation
Run it
There is three different things you can do with this tool. Run the commands below with semantic-release <command>.
version - Create a new release. Will change the version, commit it and tag it.
publish - Runs version before pushing to git and uploading to pypi.
changelog - Generates the changelog for the next release.
Running commands from setup.py
Add the following to your setup.py and you will be able to run python setup.py <command> as you would semantic-release <command>.
try:
from semantic_release import setup_hook
setup_hook(sys.argv)
except ImportError:
pass
Configuration
Configuration belongs in semantic_release section of the setup.cfg file in your project. Details about configuration options can be found in the configuration documentation.
Running it on CI
Getting a fully automated setup with automatic releases from CI can be helpful for some projects. It was the main motivation to create this tool. There is a dedicated documentation page for setting up with different CI tools: Automatic release with CI documentation
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for python-semantic-release-4.5.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | d8513101e77fa91b2b806678b749fb0c2801e487d6578eff1e552f479b989bef |
|
MD5 | beb901887c42eb8fe0967f027c6ac57f |
|
BLAKE2b-256 | 6a3e6a3ffeb195d2d806ad4d42d71b88f7f39f3dd006880fb6953c8d96375326 |
Hashes for python_semantic_release-4.5.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | db6bdd2387b905e9c8ca6e74943370d015267ab0534c165cbe20c23042bff2e1 |
|
MD5 | 8df379921676666d11100685773ed70c |
|
BLAKE2b-256 | a0e098f0505c3d1ddfeea40d592bd7ba3fcab2ca75facc9861206c8a30bb7145 |