Skip to content

Commit 6c17ee8

Browse files
authored
Merge pull request #278 from msimacek/main
Disable speedups for GraalPython
2 parents 254f5c7 + aae7d82 commit 6c17ee8

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGES.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Unreleased
88
``soft_str`` instead. :pr:`261`
99
- Raise error on missing single placeholder during string
1010
interpolation. :issue:`225`
11+
- Disable speedups module for GraalPython. :issue:`277`
1112

1213

1314
Version 2.0.1

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,11 @@ def show_message(*lines):
5252
print("=" * 74)
5353

5454

55-
supports_speedups = platform.python_implementation() not in {"PyPy", "Jython"}
55+
supports_speedups = platform.python_implementation() not in {
56+
"PyPy",
57+
"Jython",
58+
"GraalVM",
59+
}
5660

5761
if os.environ.get("CIBUILDWHEEL", "0") == "1" and supports_speedups:
5862
run_setup(True)

0 commit comments

Comments
 (0)