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

Pin gdown version to v4.6.3 #7384

Merged
merged 1 commit into from
Jan 12, 2024
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
2 changes: 1 addition & 1 deletion monai/apps/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
from monai.config.type_definitions import PathLike
from monai.utils import look_up_option, min_version, optional_import

gdown, has_gdown = optional_import("gdown", "4.4")
gdown, has_gdown = optional_import("gdown", "4.6.3")

if TYPE_CHECKING:
from tqdm import tqdm
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Full requirements for developments
-r requirements-min.txt
pytorch-ignite==0.4.11
gdown>=4.4.0
gdown>=4.4.0, <=4.6.3
scipy>=1.7.1
itk>=5.2
nibabel
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ all =
scipy>=1.7.1
pillow
tensorboard
gdown>=4.4.0
gdown==4.6.3
pytorch-ignite==0.4.11
torchvision
itk>=5.2
Expand Down Expand Up @@ -97,7 +97,7 @@ pillow =
tensorboard =
tensorboard
gdown =
gdown>=4.4.0
gdown==4.6.3
ignite =
pytorch-ignite==0.4.11
torchvision =
Expand Down
Loading