Skip to content
Closed
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
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,10 @@ may be controlled with the `LOGURU_LEVEL` environment variable.

## Changelog

### 0.9.0 (coming soon)

- update to [bioimageio.spec 0.5.4.2](https://github.com/bioimage-io/spec-bioimage-io/blob/main/changelog.md#bioimageiospec-0542)

### 0.8.0

- breaking: removed `decimals` argument from bioimageio CLI and `bioimageio.core.commands.test()`
Expand Down
3 changes: 1 addition & 2 deletions dev/env-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ channels:
- nodefaults
- pytorch
dependencies:
- bioimageio.spec==0.5.4.1
- bioimageio.spec==0.5.4.2
- black
# - crick # currently requires python<=3.9
- h5py
Expand All @@ -26,7 +26,6 @@ dependencies:
- psutil
- pydantic
- pydantic-settings
- pyright
- pytest
- pytest-cov
# - python=3.11 # removed
Expand Down
4 changes: 2 additions & 2 deletions dev/env-full.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ channels:
- nodefaults
- pytorch
dependencies:
- bioimageio.spec==0.5.4.1
- bioimageio.spec==0.5.4.2
- black
# - careamics # TODO: add careamics for model testing (currently pins pydantic to <2.9)
- cellpose # for model testing
Expand All @@ -28,7 +28,7 @@ dependencies:
- psutil
- pydantic
- pydantic-settings
- pyright
- pyright==1.1.396
- pytest
- pytest-cov
- python=3.11 # 3.12 not supported by cellpose->fastremap
Expand Down
4 changes: 2 additions & 2 deletions dev/env-gpu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ channels:
- conda-forge
- nodefaults
dependencies:
- bioimageio.spec==0.5.4.1
- bioimageio.spec==0.5.4.2
- black
- cellpose # for model testing
# - crick # currently requires python<=3.9
Expand All @@ -26,7 +26,7 @@ dependencies:
- psutil
- pydantic<2.9
- pydantic-settings
- pyright
- pyright==1.1.396
- pytest
- pytest-cov
- python=3.11
Expand Down
3 changes: 1 addition & 2 deletions dev/env-py38.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ channels:
- nodefaults
- pytorch
dependencies:
- bioimageio.spec==0.5.4.1
- bioimageio.spec==0.5.4.2
- black
- crick # uncommented
- h5py
Expand All @@ -26,7 +26,6 @@ dependencies:
- psutil
- pydantic
- pydantic-settings
- pyright
- pytest
- pytest-cov
- python=3.8 # changed
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
],
packages=find_namespace_packages(exclude=["tests"]),
install_requires=[
"bioimageio.spec ==0.5.4.1",
"bioimageio.spec ==0.5.4.2",
"h5py",
"imagecodecs",
"imageio>=2.10",
Expand Down
Loading