Skip to content

Commit 0345571

Browse files
authored
adding correct name of package during version fetch (#167)
1 parent cb9a124 commit 0345571

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

polaris/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from importlib.metadata import PackageNotFoundError, version
22

33
try:
4-
__version__ = version("polaris")
4+
__version__ = version("polaris-lib")
55
except PackageNotFoundError:
66
# package is not installed
77
__version__ = "dev"

0 commit comments

Comments
 (0)