File tree Expand file tree Collapse file tree 2 files changed +0
-13
lines changed Expand file tree Collapse file tree 2 files changed +0
-13
lines changed Original file line number Diff line number Diff line change @@ -154,7 +154,6 @@ _ctypes_test:
154154_curses :
155155 # ncurses not available on iOS.
156156 disabled-targets :
157- - .*-apple-ios
158157 - .*-apple-tvos
159158 - .*-apple-watchos
160159 sources :
@@ -180,7 +179,6 @@ _curses:
180179_curses_panel :
181180 # ncurses not available on iOS.
182181 disabled-targets :
183- - .*-apple-ios
184182 - .*-apple-tvos
185183 - .*-apple-watchos
186184 sources :
@@ -443,7 +441,6 @@ _scproxy:
443441 # _scproxy is Apple OS only.
444442 # APIs required by _scproxy not available on iOS.
445443 disabled-targets :
446- - .*-apple-ios
447444 - .*-unknown-linux-.*
448445 sources :
449446 - _scproxy.c
@@ -664,9 +661,6 @@ _thread:
664661 - .*
665662
666663_tkinter :
667- # tk not available on iOS.
668- disabled-targets :
669- - .*-apple-ios
670664 sources :
671665 - _tkinter.c
672666 - tkappinit.c
@@ -887,7 +881,6 @@ pyexpat:
887881
888882readline :
889883 disabled-targets :
890- - .*-apple-ios
891884 - .*-apple-tvos
892885 - .*-apple-watchos
893886 sources :
Original file line number Diff line number Diff line change @@ -1567,17 +1567,11 @@ fn validate_extension_modules(
15671567) -> Result < Vec < String > > {
15681568 let mut errors = vec ! [ ] ;
15691569
1570- let is_ios = target_triple. contains ( "-apple-ios" ) ;
15711570 let is_macos = target_triple. contains ( "-apple-darwin" ) ;
15721571 let is_linux = target_triple. contains ( "-unknown-linux-" ) ;
15731572 let is_windows = target_triple. contains ( "-pc-windows-" ) ;
15741573 let is_linux_musl = target_triple. contains ( "-unknown-linux-musl" ) ;
15751574
1576- // iOS isn't well supported. So don't do any validation.
1577- if is_ios {
1578- return Ok ( errors) ;
1579- }
1580-
15811575 let mut wanted = BTreeSet :: from_iter ( GLOBAL_EXTENSIONS . iter ( ) . copied ( ) ) ;
15821576
15831577 match python_major_minor {
You can’t perform that action at this time.
0 commit comments