diff options
author | Matti Picus <matti.picus@gmail.com> | 2022-08-19 13:12:50 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-19 22:12:50 +0300 |
commit | 17d730ae32f5f60c9c2ca75d202b4e866debd686 (patch) | |
tree | 8f1b1b8cd623738274cfdbeb12a3c829711ce58e /numpy/core/setup.py | |
parent | 555c07f71d779d59a0ea097f811442a6c1bb405c (diff) | |
download | numpy-17d730ae32f5f60c9c2ca75d202b4e866debd686.tar.gz |
DEP: drop support for msvc<=1900 and Interix (#22139)
[ci skip]
Co-authored-by: h-vetinari <h.vetinari@gmx.com>
Diffstat (limited to 'numpy/core/setup.py')
-rw-r--r-- | numpy/core/setup.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/numpy/core/setup.py b/numpy/core/setup.py index cdf6117e6..9e05aded0 100644 --- a/numpy/core/setup.py +++ b/numpy/core/setup.py @@ -257,14 +257,6 @@ def check_complex(config, mathlibs): priv = [] pub = [] - try: - if os.uname()[0] == "Interix": - warnings.warn("Disabling broken complex support. See #1365", stacklevel=2) - return priv, pub - except Exception: - # os.uname not available on all platforms. blanket except ugly but safe - pass - # Check for complex support st = config.check_header('complex.h') if st: |