summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2021-02-06 15:33:04 -0700
committerGitHub <noreply@github.com>2021-02-06 15:33:04 -0700
commitb666225ca3e7a7e2d0121554424b0b39d9412c4f (patch)
tree80851840fd442ba39d94656030f371658823663c /numpy
parent62b82961e12cc13379fb67f03c71062f94285cd1 (diff)
parentc78e4f69a60e81e5e0e0bda6b950440afc737222 (diff)
downloadnumpy-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.py6
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