Skip to content

Commit 779dc4a

Browse files
committed
Fixed implicit export of __version__ in top module
1 parent f77b466 commit 779dc4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/geocompy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@
113113
114114
"""
115115
try:
116-
from ._version import __version__
116+
from ._version import __version__ as __version__
117117
except Exception:
118118
__version__ = "0.0.0" # Placeholder value for source installs
119119

0 commit comments

Comments
 (0)