Skip to content

Commit

Permalink
DEV: add versioneer for more effortless __version__ management. Close #…
Browse files Browse the repository at this point in the history
  • Loading branch information
wesm committed Oct 8, 2015
1 parent 46d7e43 commit 3a0a770
Show file tree
Hide file tree
Showing 7 changed files with 2,182 additions and 17 deletions.
1 change: 1 addition & 0 deletions .gitattributes
@@ -0,0 +1 @@
ibis/_version.py export-subst
2 changes: 2 additions & 0 deletions MANIFEST.in
Expand Up @@ -25,3 +25,5 @@ global-exclude \#*
global-exclude .git*
global-exclude .DS_Store
global-exclude *.png
include versioneer.py
include ibis/_version.py
4 changes: 4 additions & 0 deletions ibis/__init__.py
Expand Up @@ -123,3 +123,7 @@ def test(impala=False):
if impala:
args.append('--impala')
pytest.main(args)

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

0 comments on commit 3a0a770

Please sign in to comment.