Skip to content

Commit

Permalink
use versioneer to manage version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
jenshnielsen committed Jul 23, 2019
1 parent 230881f commit c74024b
Show file tree
Hide file tree
Showing 8 changed files with 2,365 additions and 21 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
qcodes/_version.py export-subst
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 qcodes/_version.py
6 changes: 5 additions & 1 deletion qcodes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,4 +115,8 @@ def test(**kwargs):
return retcode


test.__test__ = False # type: ignore # Don't try to run this method as a test
test.__test__ = False # type: ignore # Don't try to run this method as a test

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

0 comments on commit c74024b

Please sign in to comment.