Skip to content
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

[RELEASE] v2.0.1 #170

Merged
merged 4 commits into from
Sep 21, 2023
Merged
Show file tree
Hide file tree
Changes from all 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
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
# Change Log
### All notable changes to `AMICO` will be documented in this file.

## `v2.0.0`<br>_2023-09-21_
### 🛠️Changed
- Bump `dmri-dicelib` to `v1.0.1`

### 🐛Fixed
- Implement the `set()` method in the `VolumeFractions` model

---
---

## `v2.0.0`<br>_2023-09-14_
### 🛠️Changed
- From multiprocessing to `multithreading` (huge speedup in models fit! 🚀)
Expand Down
4 changes: 4 additions & 0 deletions amico/models.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -1230,6 +1230,10 @@ class VolumeFractions( BaseModel ) :
self.maps_descr = [ ]


def set( self ) :
return


def get_params( self ) :
params = {}
params['id'] = self.id
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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"
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -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 =
Expand Down Expand Up @@ -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 =
Expand Down