Skip to content

Commit

Permalink
Try to resolve with open VERSION errors
Browse files Browse the repository at this point in the history
  • Loading branch information
philipparubin committed Dec 13, 2024
1 parent 8e816d5 commit b649a4a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/esig/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

# noinspection PyUnresolvedReferences
__all__ = [
# "get_version",
"get_version",
"is_library_loaded",
"get_library_load_error",
"stream2sig",
Expand All @@ -35,11 +35,11 @@
"set_backend",
"list_backends",
"backends",
# "__version__"
"__version__"
]


with open(ESIG_PACKAGE_ROOT, "VERSION") as f:
with open("VERSION") as f:
__version__ = f.read().strip()

def get_version():
Expand Down

0 comments on commit b649a4a

Please sign in to comment.