diff --git a/setup.py b/setup.py index 97aa64c..40f3ed3 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def get_version(): '# END_VERSION_BLOCK' in line): break version = f"{major}.{minor}.{build}" - if alpha: + if int(alpha): version += f"a{alpha}" return version