File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -26,12 +26,16 @@ pre-commit install
2626We have a github action set up to publish on PyPI.
2727The action is triggered on tagged commits to the main branch, where the tag starts with a "v".
2828
29- Example:
30- ```
31- git commit -m "Release v0.10.1: stuff"
32- git tag -a "v0.10.1" -m "Release v0.10.1"
33- git push --follow-tags
34- ```
29+ Example: For publishing 0.10.1
30+ 1 . Bump the package version number ` opti.__version__ == 0.10.1 ` and commit.
31+ ```
32+ git commit -m "Release v0.10.1: ..."
33+ ```
34+ 2. Tag and push the commit.
35+ ```
36+ git tag -a "v0.10.1" -m "Release v0.10.1"
37+ git push --follow-tags
38+ ```
3539
3640
3741## Documentation
Original file line number Diff line number Diff line change 11"""Specifications and tools for multi-objective optimization problems."""
22# flake8: noqa
33
4- __version__ = "0.10.9 "
4+ __version__ = "0.10.10 "
55
66from opti import (
77 constraint ,
You can’t perform that action at this time.
0 commit comments