diff options
| author | mattip <matti.picus@gmail.com> | 2020-09-03 09:26:56 +0300 |
|---|---|---|
| committer | mattip <matti.picus@gmail.com> | 2020-09-03 09:26:56 +0300 |
| commit | 7b71d6a0f599580547881bd61625c465c52720b7 (patch) | |
| tree | aa4f40b43ae5742d88d7b97696cce59037a68b4c | |
| parent | 42f9d02a249103fd024241a17ba5896fd2e18bff (diff) | |
| download | numpy-7b71d6a0f599580547881bd61625c465c52720b7.tar.gz | |
MAINT: fix win exec_prefix
| -rw-r--r-- | numpy/distutils/system_info.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/system_info.py b/numpy/distutils/system_info.py index 847098afc..1ba8e701c 100644 --- a/numpy/distutils/system_info.py +++ b/numpy/distutils/system_info.py @@ -256,7 +256,7 @@ def libpaths(paths, bits): if sys.platform == 'win32': default_lib_dirs = ['C:\\', - os.path.join(sysconfig.EXEC_PREFIX, + os.path.join(sysconfig.get_config_var('exec_prefix'), 'libs')] default_runtime_dirs = [] default_include_dirs = [] |
