Skip to content

Commit

Permalink
fixed __version__ v1.2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
marcmaxson committed Apr 3, 2020
1 parent 74ae7cc commit 816564d
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 9 deletions.
1 change: 0 additions & 1 deletion VERSION

This file was deleted.

4 changes: 0 additions & 4 deletions methylprep/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,3 @@
'read_geo',
'build_composite_dataset',
]

from pathlib import Path
with open(Path(Path(__file__).parents[1],'VERSION')) as version_file:
__version__ = version_file.read().strip()
2 changes: 1 addition & 1 deletion methylprep/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# 1) we don't load dependencies by storing it in __init__.py
# 2) we can import it in setup.py for the same reason
# 3) we can import it into your module module
__version__ = '1.2.7'
__version__ = '1.2.8'
3 changes: 0 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
from setuptools import setup, find_packages
exec(open('methylprep/version.py').read())

with open('VERSION') as version_file:
__version__ = version_file.read().strip()

setup(
name='methylprep',
version=__version__,
Expand Down

0 comments on commit 816564d

Please sign in to comment.