-
-
Notifications
You must be signed in to change notification settings - Fork 25.9k
MAINT set joblib min to 1.1.1 #24621
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
MAINT set joblib min to 1.1.1 #24621
Conversation
The 2 linux failures in |
@@ -349,6 +349,9 @@ def remove_from(alist, to_remove): | |||
# pip-compile, we are going to assume the pip lock file on a Linux | |||
# 64bit machine gives appropriate versions | |||
"python_version": "3.8.10", | |||
"package_constraints": { | |||
"scipy": "1.9.1", # 1.9.2 not available for 32 bit Windows |
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.
I think pip needs to be configured with the --prefer-binary
option to prefer the wheel over building the source. Coming from jazzband/pip-tools#1119, pip-tools can be configured to prefer binary with the PIP_PREFER_BINARY
environment variable.
Given that this is only used to generate the lock files, I slightly prefer the pinning solution that is already in this PR.
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.
I agree.
The --prefer-binary
option is probably a good idea to fix the wheel building problem discussed in #24612 (comment).
CI is green/blue! Merge? |
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.
LGTM
As discussed in #24401.
I also ran
python build_tools/update_environments_and_lock_files.py
to updated other "latest" dependencies on the CI.