Skip to content

Commit

Permalink
RF: switch version finding to use versioneer
Browse files Browse the repository at this point in the history
Use versioneer instead of rather complicated hash store / find mechanism
from nibabel.
  • Loading branch information
matthew-brett committed Oct 17, 2015
1 parent 82e2216 commit ee6de01
Show file tree
Hide file tree
Showing 9 changed files with 2,203 additions and 82 deletions.
2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1 +1 @@
nipy/COMMIT_INFO.txt export-subst
nipy/_version.py export-subst
3 changes: 2 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ recursive-include tools *
# put this stuff back into setup.py (package_data) once I'm enlightened
# enough to accomplish this herculean task
recursive-include nipy/algorithms/tests/data *
include nipy/COMMIT_INFO.txt
include LICENSE
graft examples
graft doc
global-exclude *~ *.swp *.pyc
include versioneer.py
include nipy/_version.py
6 changes: 0 additions & 6 deletions nipy/COMMIT_INFO.txt

This file was deleted.

4 changes: 4 additions & 0 deletions nipy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,7 @@ def _test_local_install():
pass



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

0 comments on commit ee6de01

Please sign in to comment.