Skip to content

Commit

Permalink
Add versioneer (#1569)
Browse files Browse the repository at this point in the history
Use versioneer for version support. This removes the need to manually
update the version in `__init__.py` and `setup.py`, and also adds a
version per-commit based on the git hash. Fixes #1533.
  • Loading branch information
jcrist committed Sep 25, 2016
1 parent 40b19dd commit b488152
Show file tree
Hide file tree
Showing 7 changed files with 2,274 additions and 5 deletions.
2 changes: 2 additions & 0 deletions MANIFEST.in
Expand Up @@ -7,3 +7,5 @@ include LICENSE.txt
include MANIFEST.in

prune docs/_build
include versioneer.py
include dask/_version.py
4 changes: 3 additions & 1 deletion dask/__init__.py
Expand Up @@ -12,4 +12,6 @@
except ImportError:
pass

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

0 comments on commit b488152

Please sign in to comment.