summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Lord <davidism@gmail.com>2021-02-06 22:59:39 -0800
committerDavid Lord <davidism@gmail.com>2021-02-06 23:00:34 -0800
commitdf1647e5fe5295e425cd437f47f6fdb63b181420 (patch)
tree812d9c73fde089672a48e26f1ca9ba185370eb95
parent411390d1362aa77e57dad856bcc061449bf183c6 (diff)
downloadmarkupsafe-df1647e5fe5295e425cd437f47f6fdb63b181420.tar.gz
don't build speedups on PyPy even with cibuildwheel
they're not actually faster on PyPy, at least right now
-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: