Skip to content

Commit e919753

Browse files
committed
Allow _suggestsions and _testexternalinspection during Python 3.13 validation on macOS
1 parent 4a3d368 commit e919753

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/validation.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1539,7 +1539,7 @@ fn validate_extension_modules(
15391539
]);
15401540
}
15411541

1542-
if (is_linux) && python_major_minor == "3.13" {
1542+
if (is_linux || is_macos) && python_major_minor == "3.13" {
15431543
wanted.extend(["_suggestions", "_testexternalinspection"]);
15441544
}
15451545

0 commit comments

Comments
 (0)