Skip to content

Commit

Permalink
fix: Move version to version.py
Browse files Browse the repository at this point in the history
This solves a circular import issue
  • Loading branch information
bahlo committed Sep 8, 2024
1 parent b64c71b commit f01016d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 0 additions & 2 deletions axiom/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
Axiom Python Client
"""

__version__ = "0.1.0-beta.2"

from .client import (
Error,
IngestFailure,
Expand Down
2 changes: 1 addition & 1 deletion axiom/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from .query import QueryLegacy, QueryResult, QueryOptions, QueryLegacyResult, QueryKind
from .annotations import AnnotationsClient
from .users import UsersClient
from .__init__ import __version__
from .version import __version__


AXIOM_URL = "https://api.axiom.co"
Expand Down
3 changes: 3 additions & 0 deletions axiom/version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
"""The current version"""

__version__ = "0.5.0"

0 comments on commit f01016d

Please sign in to comment.