There was an error while loading. Please reload this page.
2 parents 254f5c7 + aae7d82 commit 6c17ee8Copy full SHA for 6c17ee8
CHANGES.rst
@@ -8,6 +8,7 @@ Unreleased
8
``soft_str`` instead. :pr:`261`
9
- Raise error on missing single placeholder during string
10
interpolation. :issue:`225`
11
+- Disable speedups module for GraalPython. :issue:`277`
12
13
14
Version 2.0.1
setup.py
@@ -52,7 +52,11 @@ def show_message(*lines):
52
print("=" * 74)
53
54
55
-supports_speedups = platform.python_implementation() not in {"PyPy", "Jython"}
+supports_speedups = platform.python_implementation() not in {
56
+ "PyPy",
57
+ "Jython",
58
+ "GraalVM",
59
+}
60
61
if os.environ.get("CIBUILDWHEEL", "0") == "1" and supports_speedups:
62
run_setup(True)
0 commit comments