Skip to content

Commit f14821f

Browse files
authored
Allow use of Pillow wheels on Python 3.14. (#148)
1 parent caeff70 commit f14821f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
- backend: iOS
9393
runs-on: macos-latest
9494
briefcase-target: "iOS"
95-
briefcase-run-args: ' -d "iPhone SE (3rd generation)::iOS 18.5"'
95+
briefcase-run-args: ' -d "iPhone 16e::iOS 18.5"'
9696

9797
- backend: android
9898
runs-on: ubuntu-latest

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ requires = [
3131
(platform_system != 'iOS' and platform_system != 'Android' and python_version < '3.14') \
3232
or (platform_system == 'iOS' and python_version < '3.14') \
3333
or (platform_system == 'Android' and python_version < '3.14')""",
34-
# pillow not available anywhere on 3.14. 11.3.0 wheel is known bad on iOS.
35-
"""pillow != 11.3.0; \
36-
(platform_system != 'iOS' and platform_system != 'Android' and python_version < '3.14') \
37-
or (platform_system == 'iOS' and python_version < '3.14') \
34+
# pillow not available anywhere on 3.15, or on Android for 3.14+.
35+
"""pillow; \
36+
(platform_system != 'iOS' and platform_system != 'Android' and python_version < '3.15') \
37+
or (platform_system == 'iOS' and python_version < '3.15') \
3838
or (platform_system == 'Android' and python_version < '3.14')""",
3939
# pyspamum has 3.13 wheels on iOS and Android; and no wheels on Windows
4040
# On Linux, we need to restrict the test to Python3.13+, because Android reports

0 commit comments

Comments
 (0)