Skip to content

Commit

Permalink
Change version for PyPI deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
orome committed Nov 8, 2023
1 parent 8f7905a commit 0f03319
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions automata/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
# See - https://py-pkgs.org/07-releasing-versioning.html#version-numbering
__release__ = '0.1' # N(.N)*
# USE - To indicate status of release, can be on any branch; sync with classifiers in pyproject.toml
__pre_release__ = 'a3' # aN | bN | rcN
__pre_release__ = 'a2' # aN | bN | rcN
# USE - For all commits on develop branch, never on main branch, increment after each commit (that publishes)
__suffix__ = '.dev21' # .devN | (.postN)
__suffix__ = '' # .devN | (.postN)
__version__ = __release__ + __pre_release__ + __suffix__

from .core import *

0 comments on commit 0f03319

Please sign in to comment.