-
Notifications
You must be signed in to change notification settings - Fork 12
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
Another try at fixing FFTW #707
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #707 +/- ##
=======================================
Coverage 68.75% 68.75%
=======================================
Files 93 93
Lines 5840 5840
=======================================
Hits 4015 4015
Misses 1825 1825
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
One package pulls in FFTW < 1.7.0 on MacOS and Windows. Unclear which one it is... |
It is https://github.com/JuliaStats/KernelDensity.jl which is included by Makie. |
This includes than BinaryProvider |
I did some more digging. The problem is that BinaryProvider is not compatible with macOS. This package is a dependency of [email protected], which is 4 years old. The reason why this old version is getting installed, as @ranocha figured out, is that newer versions of FFTW are not compatible with 2025 versions of MKL_jll. So Pkg has the choice between new FFTW and old MKL_jll or vice versa, and apparently chooses the latest version of MKL_jll and this ancient version of FFTW:
Upgrading FFTW shows the incompatibility with new versions of MKL_jll:
This problem should be fixed upstream and not here. See JuliaMath/FFTW.jl#314. What a nice way to waste time... |
No description provided.