This repository was archived by the owner on Dec 7, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
setup: use versioneer for versioning
completely removes any hardcoded version numbers, instead using `git describe --tags --dirty --always` to construct a version based on the commits since the most recent tag
- Loading branch information
1 parent
3c1a85a
commit 1f7b25f
Showing
7 changed files
with
2,361 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
gwin/_version.py export-subst |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,9 +18,12 @@ | |
using Bayesian Inference. | ||
""" | ||
|
||
from ._version import get_versions | ||
from .likelihood import * | ||
from .sampler import * | ||
from .burn_in import * | ||
|
||
__author__ = 'Collin Capano <collin [email protected]>' | ||
__version__ = '0.1.0' | ||
__version__ = get_versions()['version'] | ||
|
||
del get_versions |
Oops, something went wrong.