@@ -298,6 +298,7 @@ impl ImportLibraryGenerator {
298
298
Some ( ( 3 , 7 ) ) | Some ( ( 3 , 8 ) ) => ( "libpypy3-c.def" , include_str ! ( "libpypy3-c.def" ) ) ,
299
299
Some ( ( 3 , 9 ) ) => ( "libpypy3.9-c.def" , include_str ! ( "libpypy3.9-c.def" ) ) ,
300
300
Some ( ( 3 , 10 ) ) => ( "libpypy3.10-c.def" , include_str ! ( "libpypy3.10-c.def" ) ) ,
301
+ Some ( ( 3 , 11 ) ) => ( "libpypy3.11-c.def" , include_str ! ( "libpypy3.11-c.def" ) ) ,
301
302
_ => return Err ( Error :: new ( ErrorKind :: Other , "Unsupported PyPy version" ) ) ,
302
303
} ,
303
304
} ;
@@ -577,7 +578,7 @@ mod tests {
577
578
}
578
579
579
580
// PyPy
580
- for minor in 7 ..=10 {
581
+ for minor in 7 ..=11 {
581
582
ImportLibraryGenerator :: new ( "x86_64" , "gnu" )
582
583
. version ( Some ( ( 3 , minor) ) )
583
584
. implementation ( PythonImplementation :: PyPy )
@@ -625,7 +626,7 @@ mod tests {
625
626
}
626
627
627
628
// PyPy
628
- for minor in 7 ..=10 {
629
+ for minor in 7 ..=11 {
629
630
ImportLibraryGenerator :: new ( "x86_64" , "msvc" )
630
631
. version ( Some ( ( 3 , minor) ) )
631
632
. implementation ( PythonImplementation :: PyPy )
@@ -674,7 +675,7 @@ mod tests {
674
675
}
675
676
676
677
// PyPy
677
- for minor in 7 ..=10 {
678
+ for minor in 7 ..=11 {
678
679
ImportLibraryGenerator :: new ( "aarch64" , "msvc" )
679
680
. version ( Some ( ( 3 , minor) ) )
680
681
. implementation ( PythonImplementation :: PyPy )
0 commit comments