From 17d730ae32f5f60c9c2ca75d202b4e866debd686 Mon Sep 17 00:00:00 2001 From: Matti Picus Date: Fri, 19 Aug 2022 13:12:50 -0600 Subject: DEP: drop support for msvc<=1900 and Interix (#22139) [ci skip] Co-authored-by: h-vetinari --- numpy/core/setup.py | 8 -------- 1 file changed, 8 deletions(-) (limited to 'numpy/core/setup.py') 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: -- cgit v1.2.1