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] = &[
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" ) {
You can’t perform that action at this time.
0 commit comments