Skip to content

Commit

Permalink
Merge pull request #12 from hammerlab/test-versioneer
Browse files Browse the repository at this point in the history
Update versioning to use versioneer
  • Loading branch information
arahuja committed Apr 27, 2016
2 parents cf4c819 + b96d785 commit 2a06c6b
Show file tree
Hide file tree
Showing 9 changed files with 2,281 additions and 10 deletions.
6 changes: 6 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# .coveragerc to control coverage.py
[run]
omit =
test/*
versioneer.py
cohorts/_version.py
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
cohorts/_version.py export-subst
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,5 @@ deploy:
password:
secure: "w+hnWrLGBQWig50bPJ18VCWfwEjxFOgoNVmweGQFGr4IWISegGBZxfHcf/bOQ403DNooiobwiE3DCu3KpgEaxABtZRTcYdIZqpK6XxXkrMEJEhnBHMz8XpU7izcbXlQAMTTVnhyGrQuxQXhl90YrqBjwHFZ2Y/89Nj69BDoYQDCDhfzlrbOevcrkMEzqPvINO2SEWk2UfIyQGxlvJDlAPbeDMr4v/oIQCrr9tzJySlSfPcaik6wt3Af9Hj9/QgecRf/ovkuc2R0v6OI2LfE1UAiKorn1V59GeCa3wr5a3qwotY2SUr5TWMnUOWwkgNA/I16k2AHSHkZPIhIGU3R+n1hbF7VkSiQEjgwuEFsfCO+1OgJqgmxISUEXHAS8zt54BxFP66n2wtx3spKppLPE6bCDKM1Q1MnV7x+VJBS75Xtr3EG7R/q/TOtA5faLIhF8sHMqENP9QemB1xK74D9/EOaPdUhnXqET/zRqTpmeS/87LdnYqVUy1lzv5PhxaCM7x/2q2/9WxV4bDMwG/vxIMdvD2YxqBIqczwav/ylGukNKO99qhwIlCcaSUQAInBrpZ/WYqEv8TKu9h/ynUXika3V9h/gJXt9HNQUMu5XOqQMjHTlNvo862/NHGHyZhBevDo4662NZtDrq96pcUIG6jlqmTPiUbBjvk6J6VQGc6xU="
on:
branch: master
branch: master
tags: true
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 cohorts/_version.py
4 changes: 3 additions & 1 deletion cohorts/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,6 @@

from .load import *

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

0 comments on commit 2a06c6b

Please sign in to comment.