Skip to content

Commit

Permalink
Auto detect Python 3.13 (#1810)
Browse files Browse the repository at this point in the history
* Auto detect Python 3.13

Now that Python 3.13 has an alpha release.

* Fix a test case
  • Loading branch information
messense committed Oct 19, 2023
1 parent ab4578c commit 177d40f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/python_interpreter/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ mod config;
const GET_INTERPRETER_METADATA: &str = include_str!("get_interpreter_metadata.py");
pub const MINIMUM_PYTHON_MINOR: usize = 7;
/// Be liberal here to include preview versions
pub const MAXIMUM_PYTHON_MINOR: usize = 12;
pub const MAXIMUM_PYTHON_MINOR: usize = 13;
pub const MAXIMUM_PYPY_MINOR: usize = 10;

/// Identifies conditions where we do not want to build wheels
Expand Down Expand Up @@ -989,19 +989,19 @@ mod tests {
let target =
Target::from_target_triple(Some("x86_64-unknown-linux-gnu".to_string())).unwrap();
let pythons = PythonInterpreter::find_by_target(&target, None);
assert_eq!(pythons.len(), 10);
assert_eq!(pythons.len(), 11);

let pythons = PythonInterpreter::find_by_target(
&target,
Some(&VersionSpecifiers::from_str(">=3.7").unwrap()),
);
assert_eq!(pythons.len(), 10);
assert_eq!(pythons.len(), 11);

let pythons = PythonInterpreter::find_by_target(
&target,
Some(&VersionSpecifiers::from_str(">=3.10").unwrap()),
);
assert_eq!(pythons.len(), 4);
assert_eq!(pythons.len(), 5);
}

#[test]
Expand Down

0 comments on commit 177d40f

Please sign in to comment.