-
-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
removed scipy from build-only dependencies #3538
Merged
mpenkov
merged 13 commits into
piskvorky:develop
from
filip-komarzyniec:3536_remove_scipy_from_build_only_deps
Jul 18, 2024
Merged
Changes from 3 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
a148e9b
removed scipy from build-only dependencies; updated README accordingly
filip-komarzyniec 68197fb
fixed conditions regarding oldest numpy installation on arm64 Windows…
filip-komarzyniec 1dc75de
README rephrased regarding NumPy installation
filip-komarzyniec c3a1f4a
Revert "fixed conditions regarding oldest numpy installation on arm64…
filip-komarzyniec 1d4beef
pin scipy, need old sparsetools for wheel testing
mpenkov 843d05a
Merge branch 'develop' into 3536_remove_scipy_from_build_only_deps
mpenkov ee1e3dc
make scipy pin more strict
mpenkov 9256f85
Merge remote-tracking branch 'refs/remotes/filip-komarzyniec/3536_rem…
mpenkov 8df0205
use macos-latest instead of deprecated macos-11
mpenkov 420a415
pin scipy in setup.py
mpenkov 5db44ee
remove redundant scipy pin from build-wheels.yml
mpenkov 0b01e9e
get rid of remaining macos-11 traces in CI workflow
mpenkov 3b1f09e
use macos-12 instead of macos-latest
mpenkov File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
What is the motivation behind changing this?
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.
Looking at the meta package oldest-supported-numpy I see that
numpy<1.18.5
will be downloaded for python 3.8 and Windows on arm64 (apart from all non-arm64 and non-aarch64 platforms).So I believe this check was incomplete resulting in installing unsupported version of Numpy for python3.8 arm64 Windows users.
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.
@piskvorky Do we want to deal with this now? It hasn't been reported yet, so it may not actually be a problem. It's been a while since I've messed with oldest-supported-numpy, so I'm not 100% sure this fix is needed and safe.
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 understand the reasoning.
Should I revert this change then?
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.
Yes, let's revert it. Feel free to make a separate PR with that change so we can review it later, after the current release is out.
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'll do as advised, thanks!