-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Temporarily Restrict setuptools Version to 79.0.1 #8441
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
Changes from all commits
6f17e83
90c9582
419e888
5b68fcc
263bcf0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# Requirements for minimal tests | ||
-r requirements.txt | ||
setuptools>=50.3.0,<66.0.0,!=60.6.0 ; python_version < "3.12" | ||
setuptools>=70.2.0; python_version >= "3.12" | ||
setuptools>=70.2.0,<=79.0.1; python_version >= "3.12" | ||
coverage>=5.5 | ||
parameterized | ||
packaging |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
torch>=2.3.0; sys_platform != 'win32' | ||
torch>=2.4.1; sys_platform == 'win32' | ||
torch>=2.4.1, <2.7.0 | ||
numpy>=1.24,<3.0 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @ericspod Was it intentional to also bump the minimum torch on non-Windows platforms from 2.3.0 to 2.4.1? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It was yes, we intend to support the previous three versions of Pytorch so 2.3 fell out of official support for MONAI. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
Uh oh!
There was an error while loading. Please reload this page.