diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2016-10-06 17:55:17 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-06 17:55:17 -0500 |
commit | fa214c1f75e6f1bfbb64eafa206049e3efe19763 (patch) | |
tree | 1bc0ee0eb18a8c6bad8330508337163077a82493 | |
parent | 8888a76c2c8211588b71e19a45a938d73fd0b5f4 (diff) | |
parent | ba11cf468bef6d10dccf3b25ecb31b8e965fb803 (diff) | |
download | numpy-fa214c1f75e6f1bfbb64eafa206049e3efe19763.tar.gz |
Merge pull request #8124 from oleksandr-pavlyk/bugfix/import-sysinfo
BUG: Fixed build break
-rw-r--r-- | numpy/distutils/msvc9compiler.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/distutils/msvc9compiler.py b/numpy/distutils/msvc9compiler.py index 58af9042f..8d0c92ed3 100644 --- a/numpy/distutils/msvc9compiler.py +++ b/numpy/distutils/msvc9compiler.py @@ -3,6 +3,8 @@ from __future__ import division, absolute_import, print_function import os from distutils.msvc9compiler import MSVCCompiler as _MSVCCompiler +from .system_info import platform_bits + def _merge(old, new): """Concatenate two environment paths avoiding repeats. |