From cb3253393cc1b108a70c9d3ef1c7bc5bf0fa66a5 Mon Sep 17 00:00:00 2001 From: Alexander Fengler Date: Wed, 18 Dec 2024 23:11:31 +0100 Subject: [PATCH] bump version (#61) --- pyproject.toml | 2 +- ssms/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e72b98b..cd6d4c7 100755 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ requires = ["setuptools", "wheel", "Cython>=0.29.23", "numpy >= 1.20"] [project] name= "ssm-simulators" -version= "0.8.0" +version= "0.8.1" authors= [{name = "Alexander Fenger", email = "alexander_fengler@brown.edu"}] description= "SSMS is a package collecting simulators and training data generators for a bunch of generative models of interest in the cognitive science / neuroscience and approximate bayesian computation communities" readme = "README.md" diff --git a/ssms/__init__.py b/ssms/__init__.py index 94ea215..48ec814 100755 --- a/ssms/__init__.py +++ b/ssms/__init__.py @@ -4,6 +4,6 @@ from . import config from . import support_utils -__version__ = "0.8.0" # importlib.metadata.version(__package__ or __name__) +__version__ = "0.8.1" # importlib.metadata.version(__package__ or __name__) __all__ = ["basic_simulators", "dataset_generators", "config", "support_utils"]