diff options
author | David Lord <davidism@gmail.com> | 2021-02-06 23:03:48 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-06 23:03:48 -0800 |
commit | 39c79f38546bf27fc88f991675d3f0f78710a594 (patch) | |
tree | 812d9c73fde089672a48e26f1ca9ba185370eb95 | |
parent | 411390d1362aa77e57dad856bcc061449bf183c6 (diff) | |
parent | df1647e5fe5295e425cd437f47f6fdb63b181420 (diff) | |
download | markupsafe-39c79f38546bf27fc88f991675d3f0f78710a594.tar.gz |
Merge pull request #184 from pallets/pypy-no-speedups
don't build speedups on PyPy with cibuildwheel
-rw-r--r-- | setup.py | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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: |