Skip to content

Commit

Permalink
Merge pull request #33 from jhamman/versioneer
Browse files Browse the repository at this point in the history
add versioneer
  • Loading branch information
Joe Hamman committed Apr 14, 2018
2 parents a3f62a5 + e211cdb commit 669a7db
Show file tree
Hide file tree
Showing 10 changed files with 2,364 additions and 8 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
dask_jobqueue/_version.py export-subst
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@ include README.rst

recursive-exclude * __pycache__
recursive-exclude * *.py[co]
include versioneer.py
include dask_jobqueue/_version.py
4 changes: 4 additions & 0 deletions dask_jobqueue/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,7 @@
from .pbs import PBSCluster
from .slurm import SLURMCluster
from .sge import SGECluster

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

0 comments on commit 669a7db

Please sign in to comment.