We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
__version__
__init__.py
1 parent 9a5276b commit c902e86Copy full SHA for c902e86
pymc_extras/__init__.py
@@ -13,6 +13,8 @@
13
# limitations under the License.
14
import logging
15
16
+from importlib.metadata import version
17
+
18
from pymc_extras import gp, statespace, utils
19
from pymc_extras.distributions import *
20
from pymc_extras.inference import find_MAP, fit, fit_laplace, fit_pathfinder
@@ -30,3 +32,6 @@
30
32
if len(_log.handlers) == 0:
31
33
handler = logging.StreamHandler()
34
_log.addHandler(handler)
35
36
37
+__version__ = version("pymc-extras")
0 commit comments