Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
Signed-off-by: YunLiu <55491388+KumoLiu@users.noreply.github.com>
  • Loading branch information
KumoLiu committed Jul 2, 2024
1 parent 8df9061 commit 1499f16
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ itk>=5.2
nibabel
parameterized
scikit-image>=0.19.0
scipy>=1.14.0
scipy>=1.12.0; python_version >= '3.9'
tensorboard
commonmark==0.9.1
recommonmark==0.6.0
Expand Down
8 changes: 4 additions & 4 deletions monai/data/ultrasound_confidence_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@
__all__ = ["UltrasoundConfidenceMap"]

cv2, _ = optional_import("cv2")
csc_matrix, _ = optional_import("scipy.sparse", "1.14.0", min_version, "csc_matrix")
spsolve, _ = optional_import("scipy.sparse.linalg", "1.14.0", min_version, "spsolve")
cg, _ = optional_import("scipy.sparse.linalg", "1.14.0", min_version, "cg")
hilbert, _ = optional_import("scipy.signal", "1.14.0", min_version, "hilbert")
csc_matrix, _ = optional_import("scipy.sparse", "1.12.0", min_version, "csc_matrix")
spsolve, _ = optional_import("scipy.sparse.linalg", "1.12.0", min_version, "spsolve")
cg, _ = optional_import("scipy.sparse.linalg", "1.12.0", min_version, "cg")
hilbert, _ = optional_import("scipy.signal", "1.12.0", min_version, "hilbert")
ruge_stuben_solver, _ = optional_import("pyamg", "5.0.0", min_version, "ruge_stuben_solver")


Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
-r requirements-min.txt
pytorch-ignite==0.4.11
gdown>=4.7.3
scipy>=1.14.0
scipy>=1.12.0; python_version >= '3.9'
itk>=5.2
nibabel
pillow!=8.3.0 # https://github.com/python-pillow/Pillow/issues/5571
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ all =
nibabel
ninja
scikit-image>=0.14.2
scipy>=1.14.0
scipy>=1.12.0; python_version >= '3.9'
pillow
tensorboard
gdown>=4.7.3
Expand Down Expand Up @@ -92,7 +92,7 @@ ninja =
skimage =
scikit-image>=0.14.2
scipy =
scipy>=1.14.0
scipy>=1.12.0; python_version >= '3.9'
pillow =
pillow!=8.3.0
tensorboard =
Expand Down

0 comments on commit 1499f16

Please sign in to comment.