Skip to content

Commit

Permalink
fix: version number printed correctly (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
sg-s authored Sep 5, 2024
1 parent 045f97b commit 5237af5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def _get_pep440_version():


with open(version_filename, "r") as file:
__version__ = file.read()
__version__ = file.read().strip()

if __version__ == "0.0.0.dev0":
# in dev mode. we use git to get a "version number"
Expand Down

0 comments on commit 5237af5

Please sign in to comment.