diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2021-02-06 15:33:04 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-06 15:33:04 -0700 |
commit | b666225ca3e7a7e2d0121554424b0b39d9412c4f (patch) | |
tree | 80851840fd442ba39d94656030f371658823663c /numpy | |
parent | 62b82961e12cc13379fb67f03c71062f94285cd1 (diff) | |
parent | c78e4f69a60e81e5e0e0bda6b950440afc737222 (diff) | |
download | numpy-b666225ca3e7a7e2d0121554424b0b39d9412c4f.tar.gz |
Merge pull request #18348 from rgommers/depr-srcdirs
DEP: doc-deprecate BLAS_SRC/LAPACK_SRC
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/distutils/system_info.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/numpy/distutils/system_info.py b/numpy/distutils/system_info.py index 13f9da0fb..2e355a34a 100644 --- a/numpy/distutils/system_info.py +++ b/numpy/distutils/system_info.py @@ -1549,6 +1549,9 @@ class lapack_info(system_info): class lapack_src_info(system_info): + # LAPACK_SRC is deprecated, please do not use this! + # Build or install a BLAS library via your package manager or from + # source separately. section = 'lapack_src' dir_env_var = 'LAPACK_SRC' notfounderror = LapackSrcNotFoundError @@ -2468,6 +2471,9 @@ class accelerate_info(system_info): return class blas_src_info(system_info): + # BLAS_SRC is deprecated, please do not use this! + # Build or install a BLAS library via your package manager or from + # source separately. section = 'blas_src' dir_env_var = 'BLAS_SRC' notfounderror = BlasSrcNotFoundError |