Skip to content

Commit 599f1c9

Browse files
committed
Allow _suggestions on Windows
1 parent a7a4481 commit 599f1c9

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
@@ -1596,6 +1596,10 @@ fn validate_extension_modules(
15961596
]);
15971597
}
15981598

1599+
if is_windows && matches!(python_major_minor, "3.13") {
1600+
wanted.extend(["_suggestions"]);
1601+
}
1602+
15991603
if (is_linux || is_macos) && matches!(python_major_minor, "3.13" | "3.14") {
16001604
wanted.extend(["_suggestions", "_testexternalinspection"]);
16011605
}

0 commit comments

Comments
 (0)