Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
- backend: iOS
runs-on: macos-latest
briefcase-target: "iOS"
briefcase-run-args: ' -d "iPhone SE (3rd generation)::iOS 18.5"'
briefcase-run-args: ' -d "iPhone 16e::iOS 18.5"'

- backend: android
runs-on: ubuntu-latest
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ requires = [
(platform_system != 'iOS' and platform_system != 'Android' and python_version < '3.14') \
or (platform_system == 'iOS' and python_version < '3.14') \
or (platform_system == 'Android' and python_version < '3.14')""",
# pillow not available anywhere on 3.14. 11.3.0 wheel is known bad on iOS.
"""pillow != 11.3.0; \
(platform_system != 'iOS' and platform_system != 'Android' and python_version < '3.14') \
or (platform_system == 'iOS' and python_version < '3.14') \
# pillow not available anywhere on 3.15, or on Android for 3.14+.
"""pillow; \
(platform_system != 'iOS' and platform_system != 'Android' and python_version < '3.15') \
or (platform_system == 'iOS' and python_version < '3.15') \
or (platform_system == 'Android' and python_version < '3.14')""",
# pyspamum has 3.13 wheels on iOS and Android; and no wheels on Windows
# On Linux, we need to restrict the test to Python3.13+, because Android reports
Expand Down