Skip to content

Commit

Permalink
VERSION pathing
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanAugust authored Feb 26, 2024
1 parent cbcf092 commit 9b569f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cheetahpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
__copyright__ = 'Copyright 2023'

import os
with open(os.path.join('src/cheetahpy', 'VERSION')) as version_file:
with open(os.path.join(os.path.dirname(__file__), 'VERSION')) as version_file:
__version__ = version_file.read().strip()

from .cheetahpy import CheetahPy_API
Expand Down

0 comments on commit 9b569f1

Please sign in to comment.