Skip to content

Commit 42e3674

Browse files
authored
Cannot import name 'CuImage' from 'cucim' (#6744)
Fixes Project-MONAI/tutorials#1464. ### Description Seems a known issue in Cucim, rapidsai/cucim#518. Can be fixed when cucim >= 23.2.0. ### Types of changes <!--- Put an `x` in all the boxes that apply, and remove the not applicable items --> - [x] Non-breaking change (fix or new feature that would not break existing functionality). - [ ] Breaking change (fix or new feature that would cause existing functionality to change). - [ ] New tests added to cover the changes. - [ ] Integration tests passed locally by running `./runtests.sh -f -u --net --coverage`. - [ ] Quick tests passed locally by running `./runtests.sh --quick --unittests --disttests`. - [ ] In-line docstrings updated. - [ ] Documentation updated, tested `make html` command in the `docs/` folder. Signed-off-by: KumoLiu <[email protected]>
1 parent 3247db0 commit 42e3674

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ mypy>=0.790
2525
ninja
2626
torchvision
2727
psutil
28-
cucim==22.8.1; platform_system == "Linux"
28+
cucim>=23.2.0; platform_system == "Linux"
2929
openslide-python==1.1.2
3030
imagecodecs; platform_system == "Linux" or platform_system == "Darwin"
3131
tifffile; platform_system == "Linux" or platform_system == "Darwin"

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ all =
5858
tqdm>=4.47.0
5959
lmdb
6060
psutil
61-
cucim>=22.8.1
61+
cucim>=23.2.0
6262
openslide-python==1.1.2
6363
tifffile
6464
imagecodecs
@@ -105,7 +105,7 @@ lmdb =
105105
psutil =
106106
psutil
107107
cucim =
108-
cucim>=22.8.1
108+
cucim>=23.2.0
109109
openslide =
110110
openslide-python==1.1.2
111111
tifffile =

0 commit comments

Comments
 (0)