Skip to content

Commit 6b8b1c1

Browse files
authored
bump supported graalpy to v25.0 (PyO3#5542)
* github/workflows: bump CI graalpy to v25.0 * docs: update README to reflect graalpy v25 support * newsfragments: add PR * pyo3-build-config: bump MINIMUM_SUPPORTED_VERSION_GRAALPY to (25, 0)
1 parent 67ac7ab commit 6b8b1c1

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ jobs:
235235
"3.14",
236236
"3.14t",
237237
"pypy3.11",
238-
"graalpy24.2",
238+
"graalpy25.0",
239239
]
240240
platform:
241241
[

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Requires Rust 1.74 or greater.
2121
PyO3 supports the following Python distributions:
2222
- CPython 3.7 or greater
2323
- PyPy 7.3 (Python 3.11+)
24-
- GraalPy 24.2 or greater (Python 3.11+)
24+
- GraalPy 25.0 or greater (Python 3.12+)
2525

2626
You can use PyO3 to write a native Python module in Rust, or to embed Python in a Rust binary. The following sections explain each of these in turn.
2727

newsfragments/5542.packaging.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Bump supported GraalPy version to 25.0.

pyo3-build-config/src/impl_.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ pub(crate) const MINIMUM_SUPPORTED_VERSION: PythonVersion = PythonVersion { majo
3535

3636
/// GraalPy may implement the same CPython version over multiple releases.
3737
const MINIMUM_SUPPORTED_VERSION_GRAALPY: PythonVersion = PythonVersion {
38-
major: 24,
38+
major: 25,
3939
minor: 0,
4040
};
4141

0 commit comments

Comments
 (0)