Skip to content

Commit 9b67532

Browse files
committed
Update GraalPy in CI to 25.0
1 parent ea4ee78 commit 9b67532

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fail-fast: true
1919
matrix:
2020
os: [ubuntu-24.04]
21-
python-version: [3.9, '3.10', pypy3.11, graalpy-24.2,
21+
python-version: [3.9, '3.10', pypy3.11, graalpy-25.0,
2222
3.11, 3.12, 3.13, 3.13t, 3.14, 3.14t]
2323
runs-on: ${{ matrix.os }}
2424
env:

tests/test_mpz.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -687,6 +687,8 @@ def test_power_errors():
687687
pow(mpz(10**1000), 1j)
688688
with pytest.raises(TypeError):
689689
pow(object(), mpz(321))
690+
if platform.python_implementation() == "GraalVM":
691+
return # issue oracle/graalpython#551
690692
with pytest.raises(MemoryError):
691693
pow(mpz(123), 111111111111111111)
692694

0 commit comments

Comments
 (0)