@@ -19,11 +19,13 @@ sources = ["src/testbed"]
19
19
test_sources = [" tests" ]
20
20
21
21
requires = [
22
- # "cryptography; python_version < '3.13'",
23
- # "lru_dict; python_version < '3.13'",
24
- # "pillow; python_version < '3.13'",
25
- # "numpy; python_version < '3.13'",
26
- # "pandas; python_version < '3.13'",
22
+ # Numpy/pandas aren't available on 3.13.
23
+ # Binary wheels on iOS all need to be updated for the new sysconfig platform tag.
24
+ " cryptography; platform_system != 'iOS'" ,
25
+ " lru_dict; platform_system != 'iOS'" ,
26
+ " pillow; platform_system != 'iOS'" ,
27
+ " numpy; python_version < '3.13' and platform_system != 'iOS'" ,
28
+ " pandas; python_version < '3.13' and platform_system != 'iOS'" ,
27
29
]
28
30
test_requires = [
29
31
" pytest" ,
@@ -93,7 +95,7 @@ requires = [
93
95
" rubicon-objc" ,
94
96
" std-nslog" ,
95
97
]
96
- # support_package = "../Python-Apple-support/dist/Python-3.10 -iOS-support.custom.tar.gz"
98
+ # support_package = "../Python-Apple-support/dist/Python-3.13 -iOS-support.custom.tar.gz"
97
99
# template = "../../templates/briefcase-iOS-Xcode-template"
98
100
99
101
[tool .briefcase .app .testbed .android ]
@@ -102,7 +104,7 @@ requires = [
102
104
" tzdata" ,
103
105
]
104
106
105
- # support_package = "../Python-Android-support/dist/Python-3.10 -Android-support.custom.zip"
107
+ # support_package = "../Python-Android-support/dist/Python-3.13 -Android-support.custom.zip"
106
108
# template = "../../templates/briefcase-Android-gradle-template"
107
109
108
110
[tool .isort ]
0 commit comments