File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -19,9 +19,10 @@ sources = ["src/testbed"]
19
19
test_sources = [" tests" ]
20
20
21
21
requires = [
22
- " cryptography" ,
23
- " lru_dict" ,
24
- " pillow" ,
22
+ # Skip binary dependencies on mobile for Python 3.14
23
+ " cryptography; (platform_system != 'iOS' and platform_system != 'Android') or python_version < '3.14'" ,
24
+ " lru_dict; (platform_system != 'iOS' and platform_system != 'Android') or python_version < '3.14'" ,
25
+ " pillow; (platform_system != 'iOS' and platform_system != 'Android') or python_version < '3.14'" ,
25
26
# Numpy/pandas aren't available for iOS on 3.13+, or at all on 3.14.
26
27
" numpy; python_version < '3.13' or (platform_system != 'iOS' and python_version < '3.14')" ,
27
28
" pandas; python_version < '3.13' or (platform_system != 'iOS' and python_version < '3.14')" ,
You can’t perform that action at this time.
0 commit comments