Skip to content

Commit

Permalink
fix: auto detect version from build config
Browse files Browse the repository at this point in the history
  • Loading branch information
MrHedmad committed Nov 13, 2024
1 parent eaafead commit a9474b4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bioTea/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"""
import collections
import importlib.resources as pkg_resources
from importlib.metadata import version
import logging
import os
from copy import copy
Expand All @@ -20,7 +21,7 @@

init(autoreset=True)

__version__ = "1.1.0"
__version__ = version(__package__)
# Set what is exported by the __init__
__all__ = ["__version__", "OPTIONS"]

Expand Down

0 comments on commit a9474b4

Please sign in to comment.