Skip to content

Commit

Permalink
Use static version. (#233)
Browse files Browse the repository at this point in the history
  • Loading branch information
kklein authored Jun 26, 2024
1 parent 7047779 commit 0be0e6c
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/datajudge/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
"""datajudge allows to assess whether data from database complies with reference
information."""

import importlib.metadata

from .constraints.base import Constraint
from .db_access import Condition
from .requirements import BetweenRequirement, Requirement, WithinRequirement
Expand All @@ -15,7 +13,4 @@
"WithinRequirement",
]

try:
__version__ = importlib.metadata.distribution(__name__).version
except Exception:
__version__ = "1.9.0"
__version__ = "1.9.0"

0 comments on commit 0be0e6c

Please sign in to comment.