File tree Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Original file line number Diff line number Diff line change
1
+ Set the same maximum supported version for alternative interpreters as for CPython
Original file line number Diff line number Diff line change @@ -23,21 +23,15 @@ const SUPPORTED_VERSIONS_CPYTHON: SupportedVersions = SupportedVersions {
23
23
24
24
const SUPPORTED_VERSIONS_PYPY : SupportedVersions = SupportedVersions {
25
25
min : PythonVersion { major : 3 , minor : 9 } ,
26
- max : PythonVersion {
27
- major : 3 ,
28
- minor : 11 ,
29
- } ,
26
+ max : SUPPORTED_VERSIONS_CPYTHON . max ,
30
27
} ;
31
28
32
29
const SUPPORTED_VERSIONS_GRAALPY : SupportedVersions = SupportedVersions {
33
30
min : PythonVersion {
34
31
major : 3 ,
35
32
minor : 10 ,
36
33
} ,
37
- max : PythonVersion {
38
- major : 3 ,
39
- minor : 11 ,
40
- } ,
34
+ max : SUPPORTED_VERSIONS_CPYTHON . max ,
41
35
} ;
42
36
43
37
fn ensure_python_version ( interpreter_config : & InterpreterConfig ) -> Result < ( ) > {
You can’t perform that action at this time.
0 commit comments