Skip to content

Commit f6d30c2

Browse files
committed
_testexternalinspection turned into (public) remote_debugging
1 parent 7adb1e0 commit f6d30c2

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

src/validation.rs

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -748,6 +748,7 @@ const GLOBAL_EXTENSIONS_PYTHON_3_13: &[&str] = &[
748748
"_interpqueues",
749749
"_interpreters",
750750
"_sha2",
751+
"_suggestions",
751752
"_sysconfig",
752753
"_tokenize",
753754
"_typing",
@@ -760,6 +761,7 @@ const GLOBAL_EXTENSIONS_PYTHON_3_14: &[&str] = &[
760761
"_interpreters",
761762
"_remote_debugging",
762763
"_sha2",
764+
"_suggestions",
763765
"_sysconfig",
764766
"_tokenize",
765767
"_typing",
@@ -1599,12 +1601,8 @@ fn validate_extension_modules(
15991601
]);
16001602
}
16011603

1602-
if is_windows && matches!(python_major_minor, "3.13" | "3.14") {
1603-
wanted.extend(["_suggestions"]);
1604-
}
1605-
1606-
if (is_linux || is_macos) && matches!(python_major_minor, "3.13" | "3.14") {
1607-
wanted.extend(["_suggestions", "_testexternalinspection"]);
1604+
if (is_linux || is_macos) && matches!(python_major_minor, "3.13") {
1605+
wanted.insert("_testexternalinspection");
16081606
}
16091607

16101608
if (is_linux || is_macos) && matches!(python_major_minor, "3.12" | "3.13" | "3.14") {

0 commit comments

Comments
 (0)