Skip to content

Commit

Permalink
bump scikit-image upper bound (allow 0.24.x) (#769)
Browse files Browse the repository at this point in the history
  • Loading branch information
grlee77 authored Aug 22, 2024
1 parent de6bfbb commit a59be4f
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion conda/environments/all_cuda-118_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ dependencies:
- python>=3.10,<3.12
- pywavelets>=1.0
- recommonmark
- scikit-image>=0.19.0,<0.24.0a0
- scikit-image>=0.19.0,<0.25.0a0
- scipy>=1.6.0
- sphinx<6
- sysroot_linux-64==2.17
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/all_cuda-125_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ dependencies:
- python>=3.10,<3.12
- pywavelets>=1.0
- recommonmark
- scikit-image>=0.19.0,<0.24.0a0
- scikit-image>=0.19.0,<0.25.0a0
- scipy>=1.6.0
- sphinx<6
- sysroot_linux-64==2.17
Expand Down
4 changes: 2 additions & 2 deletions conda/recipes/cucim/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ requirements:
- libcucim ={{ version }}
- python
- rapids-build-backend >=0.3.0,<0.4.0.dev0
- scikit-image >=0.19.0,<0.23.0a0
- scikit-image >=0.19.0,<0.25.0a0
- scipy >=1.6
- setuptools >=24.2.0
run:
Expand All @@ -79,7 +79,7 @@ requirements:
- lazy_loader >=0.1
- libcucim ={{ version }}
- python
- scikit-image >=0.19.0,<0.23.0a0
- scikit-image >=0.19.0,<0.25.0a0
- scipy >=1.6
run_constrained:
- openslide-python >=1.3.0
Expand Down
2 changes: 1 addition & 1 deletion dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ dependencies:
- click
- lazy_loader>=0.1
- numpy>=1.23.4,<2.0a0
- scikit-image>=0.19.0,<0.24.0a0
- scikit-image>=0.19.0,<0.25.0a0
- scipy>=1.6.0
- output_types: conda
packages:
Expand Down
2 changes: 1 addition & 1 deletion python/cucim/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dependencies = [
"cupy-cuda11x>=12.0.0",
"lazy_loader>=0.1",
"numpy>=1.23.4,<2.0a0",
"scikit-image>=0.19.0,<0.24.0a0",
"scikit-image>=0.19.0,<0.25.0a0",
"scipy>=1.6.0",
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`.
classifiers = [
Expand Down
2 changes: 1 addition & 1 deletion python/cucim/src/cucim/skimage/measure/_regionprops.py
Original file line number Diff line number Diff line change
Expand Up @@ -1246,7 +1246,7 @@ def regionprops(
Centroid coordinate tuple ``(row, col)``, relative to region bounding
box, weighted with intensity image.
**coords_scaled** : (K, 2) ndarray
Coordinate list ``(row, col)``of the region scaled by ``spacing``.
Coordinate list ``(row, col)`` of the region scaled by ``spacing``.
**coords** : (K, 2) ndarray
Coordinate list ``(row, col)`` of the region.
**eccentricity** : float
Expand Down

0 comments on commit a59be4f

Please sign in to comment.