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.
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
Hopefully fixes builds on 3.12. #70
Hopefully fixes builds on 3.12. #70
Changes from 48 commits
352fe5f
752a8d6
7225748
ae09b24
a8dc9ee
73946fb
951ce78
a7d0868
5895b15
6672832
b5a3641
e88be4f
c2f36be
ae00033
d29c051
7601bc6
3fdab57
321755c
16f1b02
fc83dcc
97f26c9
85f1079
5ab81ab
c2685c4
fc28677
88264c3
a7690a1
f90a6a3
6cec24a
d7099ff
3fd0561
fb8c217
f07a83c
33b3145
577cfa2
82644d1
fb5dcc8
41481de
5c3d16c
72140e5
580477d
ef655a2
ee9017b
538b995
a859327
e59e496
bcacd76
f23e144
6d70a6b
4b081e6
b893196
12d45d4
f7e2e98
a0fb593
6036646
9b7bbc1
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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 specific to the CI setup for building Windows wheels, and won't work in case users attempt to build from source on Windows for some reason. That may or may not matter to you, but it's probably appropriate to at least emit a warning with
message("explain-that-blas-wasn't-found-and-this-is-for-CI-only")
here?Also, you may want to change this line to
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.
OK, I'm thinking of refactoring it: passing anaconda lib folder location as a meson option in the CI file, so the
meson.build
is not tailored for the compilation process on github.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.
That makes sense to me. You can do it as a CLI option, or you can craft an
openblas.pc
file which points to the right paths in a CI job and then add the directory of that.pc
file toPKG_CONFIG_PATH
. For the latter approach, see http://scipy.github.io/devdocs/building/blas_lapack.html#using-pkg-config-to-detect-libraries-in-a-nonstandard-location.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.
Minor: this comment is a left-over and doesn't apply, so best to clean it up.
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.
Probably can be cleaned up as well now?