Skip to content

Commit 006d5bd

Browse files
committed
Remove more -apple-ios
1 parent 7374569 commit 006d5bd

File tree

2 files changed

+0
-13
lines changed

2 files changed

+0
-13
lines changed

cpython-unix/extension-modules.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff 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

888882
readline:
889883
disabled-targets:
890-
- .*-apple-ios
891884
- .*-apple-tvos
892885
- .*-apple-watchos
893886
sources:

src/validation.rs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff 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 {

0 commit comments

Comments
 (0)