Unverified Commit e3cc0ebd by HL Committed by GitHub

fix: fix missing version file dependency when installing without -e (#156)

parent 33e374aa
......@@ -16,5 +16,5 @@ import os
version_folder = os.path.dirname(os.path.join(os.path.abspath(__file__)))
with open(os.path.join(version_folder, 'version/version')) as f:
with open(os.path.join(os.path.join(version_folder, os.pardir), 'version/version')) as f:
__version__ = f.read().strip()
0.0.2
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment