Skip to content

Commit

Permalink
Fix package name
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter-van-Tol committed Feb 13, 2024
1 parent e942197 commit c63bf1b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/litexcnc/firmware/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,7 @@
from importlib_metadata import PackageNotFoundError, version # pragma: no cover

try:
# Change here if project is renamed and does not equal the package name
dist_name = __name__ # pylint: disable=invalid-name
__version__ = version(dist_name)
__version__ = version("litexcnc")
except PackageNotFoundError: # pragma: no cover
__version__ = "0.0.0"
finally:
Expand Down

0 comments on commit c63bf1b

Please sign in to comment.