Skip to content

Commit

Permalink
Revert "Auto detect Python 3.13 (#1810)" (#1964)
Browse files Browse the repository at this point in the history
This reverts commit 177d40f.
  • Loading branch information
messense committed Feb 27, 2024
1 parent 2d8708e commit f2a7b9d
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 = 13;
pub const MAXIMUM_PYTHON_MINOR: usize = 12;
pub const MAXIMUM_PYPY_MINOR: usize = 10;

/// Identifies conditions where we do not want to build wheels
Expand Down Expand Up @@ -988,19 +988,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(), 11);
assert_eq!(pythons.len(), 10);

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

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

#[test]
Expand Down

0 comments on commit f2a7b9d

Please sign in to comment.