Skip to content

Commit

Permalink
moved version up in __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
iskandr committed May 27, 2016
1 parent c30c541 commit 59f9156
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Expand Up @@ -3,4 +3,4 @@ VCS = git
style = pep440
versionfile_source = varcode/_version.py
versionfile_build = varcode/_version.py
tag_prefix = 'v'
tag_prefix = 'v'
9 changes: 5 additions & 4 deletions varcode/__init__.py
Expand Up @@ -49,6 +49,11 @@
ExonLoss,
)

from ._version import get_versions
__version__ = get_versions()['version']
del get_versions


__all__ = [
# basic classes
"Variant",
Expand Down Expand Up @@ -92,7 +97,3 @@
"FrameShift",
"ExonLoss",
]

from ._version import get_versions
__version__ = get_versions()['version']
del get_versions

0 comments on commit 59f9156

Please sign in to comment.