Skip to content

Automatic versioning with versioneer #6078

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
Sep 14, 2022
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pymc/_version.py export-subst
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ include requirements.txt
include *.md *.rst
include scripts/*.sh
include LICENSE
include versioneer.py
4 changes: 3 additions & 1 deletion pymc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
# limitations under the License.

# pylint: disable=wildcard-import
__version__ = "4.1.7"

import logging

Expand Down Expand Up @@ -75,3 +74,6 @@ def __set_compiler_flags():
from pymc.tuning import *
from pymc.variational import *
from pymc.vartypes import *

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