summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--setup.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 2a8743f..c6ee5bf 100644
--- a/setup.py
+++ b/setup.py
@@ -52,9 +52,11 @@ def show_message(*lines):
print("=" * 74)
-if os.environ.get("CIBUILDWHEEL", "0") == "1":
+supports_speedups = platform.python_implementation() not in {"PyPy", "Jython"}
+
+if os.environ.get("CIBUILDWHEEL", "0") == "1" and supports_speedups:
run_setup(True)
-elif platform.python_implementation() not in {"PyPy", "Jython"}:
+elif supports_speedups:
try:
run_setup(True)
except BuildFailed: