From ea9e262fc5ea0254e8c9e52685d69d503e9729b0 Mon Sep 17 00:00:00 2001 From: TomMonks Date: Tue, 30 Jul 2024 16:31:26 +0100 Subject: [PATCH 1/4] fix(env): +rich library; -scipy --- CHANGES.md | 11 +++++++++++ pyproject.toml | 5 ++++- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 612500b..8365901 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Consistent identifier (represents all versions, resolves to latest): [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.4553641.svg)](https://doi.org/10.5281/zenodo.4553641) + +## v0.6.1 + +### Fixed + +* BUILD: added rich library. + +### Removed + +* Scipy Dependency + ## v0.6.0 ### Added diff --git a/pyproject.toml b/pyproject.toml index 44da1db..7d5579e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,7 +23,7 @@ dependencies = [ "numpy>=1.18.1", "pandas>=2.0.0", "scikit-learn>=1.0.0", - "scipy>=1.4.1", + "rich>=13.7.1" ] [project.urls] @@ -38,3 +38,6 @@ path = "sim_tools/__init__.py" include = [ "/sim_tools", ] + +[[tool.hatch.envs.hatch-test.matrix]] +python = ["3.10", "3.11", "3.12"] From 7637b597417e40d245208d7e96bd3895774e1e06 Mon Sep 17 00:00:00 2001 From: TomMonks Date: Tue, 30 Jul 2024 16:32:00 +0100 Subject: [PATCH 2/4] chore(version): bumped to v0.6.1 --- sim_tools/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sim_tools/__init__.py b/sim_tools/__init__.py index 433d447..dad0737 100644 --- a/sim_tools/__init__.py +++ b/sim_tools/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.6.0' +__version__ = '0.6.1' __author__ = 'Thomas Monks' from . import datasets, distributions, time_dependent, ovs \ No newline at end of file From c4a9ab77392d06ef713cb2c9112ddf1f6d28b01b Mon Sep 17 00:00:00 2001 From: TomMonks Date: Tue, 30 Jul 2024 16:33:08 +0100 Subject: [PATCH 3/4] chore(features): updated roadmap --- feature_list.md | 37 +------------------------------------ 1 file changed, 1 insertion(+), 36 deletions(-) diff --git a/feature_list.md b/feature_list.md index 9a6c322..3c78d22 100644 --- a/feature_list.md +++ b/feature_list.md @@ -1,17 +1,5 @@ # sim-tools feature list -module: distributions - -* Triangular -* Exponential -* Log normal -* Normal -* Gamma -* Empirical -* Fixed -* Combination -* NSPP via thinning - module: Experimentation * Multiple replication analysis - confidence interval method @@ -34,29 +22,6 @@ module: results visualisation ## Road map -### v0.3.0 - -Test with Python 3.10 and 3.11 -Simpy 4.1.1 - -module: distributions - -* Triangular -* Exponential -* Log normal -* Normal -* Gamma -* Empirical -* Fixed -* Combination - -### v0.4.0 - -module: distributions - -* Empirical -* NSPP via thinning - -## v0.5.0 +## v0.7.0 Enhanced trace functionality \ No newline at end of file From 5905ab929a6b9eb99f10229f7a018263094b444d Mon Sep 17 00:00:00 2001 From: TomMonks Date: Tue, 30 Jul 2024 16:34:56 +0100 Subject: [PATCH 4/4] chore(changes) v0.6.0 DOI and release urls --- CHANGES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 8365901..f3dc339 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -18,7 +18,7 @@ Consistent identifier (represents all versions, resolves to latest): [![DOI](htt * Scipy Dependency -## v0.6.0 +## [v0.6.0](https://github.com/TomMonks/sim-tools/releases/tag/v0.6.0) [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.13122484.svg)](https://doi.org/10.5281/zenodo.13122484) ### Added