-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Cherry pick #7859 for 1.3.2 #7873
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
Conversation
### Description This fixes the version of Numpy to be less than 2.0 so that we can get a working setup guaranteed. Numpy 2.0 isn't supported yet by MONAI and will need a number of changes to be compatible. This is only sometimes a problem because a number of dependencies we have require Numpy<2.0. When these are absent however, such as with minimal installs, Numpy 2.0 can be installed and causes problems. This is a temporary fix until we have worked out an update that's compatible with versions before and after 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: Eric Kerfoot <eric.kerfoot@kcl.ac.uk>
Hi @ericspod, could you please help fix the DCO issue? Thanks! |
…ply.github.com> I, Eric Kerfoot <17726042+ericspod@users.noreply.github.com>, hereby add my Signed-off-by to this commit: 6a64249 Signed-off-by: Eric Kerfoot <17726042+ericspod@users.noreply.github.com>
I, Eric Kerfoot <eric.kerfoot@kcl.ac.uk>, hereby add my Signed-off-by to this commit: 589f1b4 Signed-off-by: Eric Kerfoot <eric.kerfoot@kcl.ac.uk>
I tried this with the two different messages it suggested, my signoffs are in the commit log now so I think we're good to just force it to pass. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the only fix I think we need for 1.3.2, this change should solve the issue for now and our tests should pass. Thanks!
/build |
Do we want to merge this into a separate 1.3.2 branch and do the hotfix release from there? If you've cherry-picked from 1.3.1 then that will have only this change as the difference versus 1.3.1 as we want. |
Hi @ericspod, since dco is manually set to pass. I guess it still has not passed yet. Could you please check your github email config by using
Yes, I will create one. |
…ply.github.com> I, Eric Kerfoot <17726042+ericspod@users.noreply.github.com>, hereby add my Signed-off-by to this commit: 6a64249 Signed-off-by: Eric Kerfoot <17726042+ericspod@users.noreply.github.com>
That seems to have done it. |
Description
Types of changes
./runtests.sh -f -u --net --coverage
../runtests.sh --quick --unittests --disttests
.make html
command in thedocs/
folder.