You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- meson.build: track OpenBLAS provider to assume bundled LAPACK (skip
conflicting system liblapack), detect scipy_ symbol prefix
- build.yml: use venv for sdist (system install permission denied)
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
# Check if BLAS bundles LAPACK (e.g., OpenBLAS) BEFORE trying system liblapack.
45
-
# On musllinux, system liblapack depends on system openblas which conflicts
46
-
# with scipy-openblas32 at link time. Test all naming conventions since
47
-
# convention detection hasn't run yet.
48
-
if cc.has_function('dgesv_', dependencies: [blas_dep]) or cc.has_function('dgesv', dependencies: [blas_dep]) or cc.has_function('DGESV', dependencies: [blas_dep])
0 commit comments