Skip to content

Commit

Permalink
__version bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
marcmaxson committed Mar 31, 2020
1 parent 4da4b80 commit 813cb80
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.5
1.2.6
2 changes: 1 addition & 1 deletion methylprep/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@
]

from pathlib import Path
with open(Path(Path.cwd(), 'VERSION')) as version_file:
with open(Path(Path(__file__).parents[1],'VERSION')) as version_file:
__version__ = version_file.read().strip()

0 comments on commit 813cb80

Please sign in to comment.