Skip to content

Commit 32da092

Browse files
committed
Allow _suggestsions and _testexternalinspection during Python 3.13 validation
1 parent 2110d43 commit 32da092

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/validation.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1539,6 +1539,10 @@ fn validate_extension_modules(
15391539
]);
15401540
}
15411541

1542+
if (is_linux) && python_major_minor == "3.13" {
1543+
wanted.extend(["_suggestions", "_testexternalinspection"]);
1544+
}
1545+
15421546
if (is_linux || is_macos) && matches!(python_major_minor, "3.12" | "3.13") {
15431547
wanted.insert("_testsinglephase");
15441548
}

0 commit comments

Comments
 (0)