File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -748,6 +748,7 @@ const GLOBAL_EXTENSIONS_PYTHON_3_13: &[&str] = &[
748
748
"_interpqueues" ,
749
749
"_interpreters" ,
750
750
"_sha2" ,
751
+ "_suggestions" ,
751
752
"_sysconfig" ,
752
753
"_tokenize" ,
753
754
"_typing" ,
@@ -760,6 +761,7 @@ const GLOBAL_EXTENSIONS_PYTHON_3_14: &[&str] = &[
760
761
"_interpreters" ,
761
762
"_remote_debugging" ,
762
763
"_sha2" ,
764
+ "_suggestions" ,
763
765
"_sysconfig" ,
764
766
"_tokenize" ,
765
767
"_typing" ,
@@ -1599,12 +1601,8 @@ fn validate_extension_modules(
1599
1601
] ) ;
1600
1602
}
1601
1603
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" ) ;
1608
1606
}
1609
1607
1610
1608
if ( is_linux || is_macos) && matches ! ( python_major_minor, "3.12" | "3.13" | "3.14" ) {
You can’t perform that action at this time.
0 commit comments