We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3947d5d commit cf6b904Copy full SHA for cf6b904
pyo3-ffi/build.rs
@@ -23,21 +23,15 @@ const SUPPORTED_VERSIONS_CPYTHON: SupportedVersions = SupportedVersions {
23
24
const SUPPORTED_VERSIONS_PYPY: SupportedVersions = SupportedVersions {
25
min: PythonVersion { major: 3, minor: 9 },
26
- max: PythonVersion {
27
- major: 3,
28
- minor: 11,
29
- },
+ max: SUPPORTED_VERSIONS_CPYTHON.max,
30
};
31
32
const SUPPORTED_VERSIONS_GRAALPY: SupportedVersions = SupportedVersions {
33
min: PythonVersion {
34
major: 3,
35
minor: 10,
36
},
37
38
39
40
41
42
43
fn ensure_python_version(interpreter_config: &InterpreterConfig) -> Result<()> {
0 commit comments