From cdb45f48149a92de0a411f8fbacb13c25b7392c4 Mon Sep 17 00:00:00 2001 From: nightwnvol Date: Thu, 21 Sep 2023 15:07:44 +0200 Subject: [PATCH 1/4] fix: implement the 'set()' method in 'VolumeFractions' --- amico/models.pyx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/amico/models.pyx b/amico/models.pyx index d4797a4..26712e0 100644 --- a/amico/models.pyx +++ b/amico/models.pyx @@ -1230,6 +1230,10 @@ class VolumeFractions( BaseModel ) : self.maps_descr = [ ] + def set( self ) : + return + + def get_params( self ) : params = {} params['id'] = self.id From 7c513dbaaf4f50890d135371116601dcebaa160f Mon Sep 17 00:00:00 2001 From: nightwnvol Date: Thu, 21 Sep 2023 15:08:33 +0200 Subject: [PATCH 2/4] build: bump 'dmri-dicelib' to v1.0.1 --- requirements.txt | 2 +- setup.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 58164c9..5a35b64 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,5 +2,5 @@ numpy>=1.19.5 scipy>=1.5.4 dipy>=1.4.1 threadpoolctl>=3.1.0 -dmri-dicelib>=1.0.0 +dmri-dicelib>=1.0.1 importlib-metadata>=4.8.3; python_version<"3.8" diff --git a/setup.cfg b/setup.cfg index 5f0f0b7..984e23b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -38,7 +38,7 @@ install_requires = scipy>=1.5.4 dipy>=1.4.1 threadpoolctl>=3.1.0 - dmri-dicelib>=1.0.0 + dmri-dicelib>=1.0.1 importlib-metadata>=4.8.3; python_version<"3.8" python_requires = >=3.6 packages = From 97fc07989aa48a83d28ab611a0a9e79694acfc4c Mon Sep 17 00:00:00 2001 From: nightwnvol Date: Thu, 21 Sep 2023 15:08:58 +0200 Subject: [PATCH 3/4] build: bump to v2.0.1 --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 984e23b..d88b63a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = dmri-amico -version = 2.0.0 +version = 2.0.1 url = https://github.com/daducci/AMICO download_url = https://pypi.org/project/dmri-amico project_urls = From b13f2614d7b41efddd2293d67a900aa968af5f5d Mon Sep 17 00:00:00 2001 From: nightwnvol Date: Thu, 21 Sep 2023 15:09:23 +0200 Subject: [PATCH 4/4] docs: update CHANGELOG.md --- CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 77602da..344430b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ # Change Log ### All notable changes to `AMICO` will be documented in this file. +## `v2.0.0`
_2023-09-21_ +### 🛠️Changed +- Bump `dmri-dicelib` to `v1.0.1` + +### 🐛Fixed +- Implement the `set()` method in the `VolumeFractions` model + +--- +--- + ## `v2.0.0`
_2023-09-14_ ### 🛠️Changed - From multiprocessing to `multithreading` (huge speedup in models fit! 🚀)