From 0f03319849e489e08ffcc92beac7d3b973dfb96f Mon Sep 17 00:00:00 2001 From: Roy Levien Date: Wed, 8 Nov 2023 14:30:34 -0500 Subject: [PATCH] Change version for PyPI deployment --- automata/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/automata/__init__.py b/automata/__init__.py index d50a492..46450ad 100644 --- a/automata/__init__.py +++ b/automata/__init__.py @@ -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 *