Skip to content

Commit

Permalink
BLD: Use versioneer to pull version from git tag
Browse files Browse the repository at this point in the history
  • Loading branch information
richafrank committed Oct 17, 2017
1 parent d772d9d commit 59a8bb6
Show file tree
Hide file tree
Showing 8 changed files with 2,366 additions and 9 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
alphalens/_version.py export-subst
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
include versioneer.py
include alphalens/_version.py
6 changes: 5 additions & 1 deletion alphalens/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
from . import tears
from . import utils

__version__ = '0.1.2'
from ._version import get_versions


__version__ = get_versions()['version']
del get_versions

__all__ = ['performance', 'plotting', 'tears', 'utils']
Loading

0 comments on commit 59a8bb6

Please sign in to comment.