Skip to content

Commit

Permalink
feat: Include python313.def into the crate
Browse files Browse the repository at this point in the history
  • Loading branch information
ravenexp committed Jun 24, 2024
1 parent 49d6ceb commit 450b46f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,7 @@ impl ImportLibraryGenerator {
Some((3, 10)) => ("python310.def", include_str!("python310.def")),
Some((3, 11)) => ("python311.def", include_str!("python311.def")),
Some((3, 12)) => ("python312.def", include_str!("python312.def")),
Some((3, 13)) => ("python313.def", include_str!("python313.def")),
_ => return Err(Error::new(ErrorKind::Other, "Unsupported Python version")),
},
PythonImplementation::PyPy => match self.version {
Expand Down

0 comments on commit 450b46f

Please sign in to comment.