File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -106,9 +106,6 @@ jobs:
106
106
sudo udevadm control --reload-rules
107
107
sudo udevadm trigger --name-match=kvm
108
108
exclude :
109
- # numpy and pandas aren't available for 3.13 on iOS
110
- - backend : " iOS"
111
- python-version : " 3.13"
112
109
# Support package isn't available for 3.13 on Linux
113
110
- backend : " linux-flatpak"
114
111
python-version : " 3.13"
Original file line number Diff line number Diff line change @@ -22,8 +22,9 @@ requires = [
22
22
" cryptography" ,
23
23
" lru_dict" ,
24
24
" pillow" ,
25
- " numpy" ,
26
- " pandas" ,
25
+ # Numpy/pandas aren't available for iOS on 3.13+.
26
+ " numpy; python_version < '3.13' or platform_system != 'iOS'" ,
27
+ " pandas; python_version < '3.13' or platform_system != 'iOS'" ,
27
28
]
28
29
test_requires = [
29
30
" pytest" ,
You can’t perform that action at this time.
0 commit comments