File tree Expand file tree Collapse file tree 4 files changed +4
-3
lines changed
Expand file tree Collapse file tree 4 files changed +4
-3
lines changed Original file line number Diff line number Diff 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 [
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ Requires Rust 1.74 or greater.
2121PyO3 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
2626You 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
Original file line number Diff line number Diff line change 1+ Bump supported GraalPy version to 25.0.
Original file line number Diff line number Diff 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.
3737const MINIMUM_SUPPORTED_VERSION_GRAALPY : PythonVersion = PythonVersion {
38- major : 24 ,
38+ major : 25 ,
3939 minor : 0 ,
4040} ;
4141
You can’t perform that action at this time.
0 commit comments