Skip to content

Commit

Permalink
0.12.0-beta.115
Browse files Browse the repository at this point in the history
  • Loading branch information
joocer committed Dec 13, 2023
1 parent 9a7f507 commit 0ed262f
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 5 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/build_counter.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
name: Count Action Executions

on:
push:
branches:
- '!main' # exclude main
pull

jobs:
count_executions:
Expand Down
20 changes: 18 additions & 2 deletions opteryx/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,22 @@
1) we don't load dependencies by storing it in __init__.py
2) we can import it in setup.py for the same reason
"""
from enum import Enum

# __version__ = "0.4.0-alpha.6"
__version__ = "0.12.0-beta.12"
from .__build__ import __build__


class VersionStatus(Enum):
ALPHA = "alpha"
BETA = "beta"
RELEASE = "release"


_major = 0
_minor = 12
_revision = 0
_status = VersionStatus.BETA

__version__ = f"{_major}.{_minor}.{_revision}" + (
f"-{_status.value}.{__build__}" if _status != VersionStatus.RELEASE else ""
)

0 comments on commit 0ed262f

Please sign in to comment.