Skip to content

Commit a3a9da4

Browse files
committed
test: Generate python313t.lib and python313t.dll.a
1 parent 27e05a7 commit a3a9da4

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

src/lib.rs

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -553,6 +553,15 @@ mod tests {
553553
.unwrap();
554554
}
555555

556+
// Free-threaded CPython v3.13+
557+
for minor in 13..=13 {
558+
ImportLibraryGenerator::new("x86_64", "gnu")
559+
.version(Some((3, minor)))
560+
.abi_tag(Some("t"))
561+
.generate(&dir)
562+
.unwrap();
563+
}
564+
556565
// PyPy
557566
for minor in 7..=10 {
558567
ImportLibraryGenerator::new("x86_64", "gnu")
@@ -592,6 +601,15 @@ mod tests {
592601
.unwrap();
593602
}
594603

604+
// Free-threaded CPython v3.13+
605+
for minor in 13..=13 {
606+
ImportLibraryGenerator::new("x86_64", "msvc")
607+
.version(Some((3, minor)))
608+
.abi_tag(Some("t"))
609+
.generate(&dir)
610+
.unwrap();
611+
}
612+
595613
// PyPy
596614
for minor in 7..=10 {
597615
ImportLibraryGenerator::new("x86_64", "msvc")

0 commit comments

Comments
 (0)