We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4c94cb commit 202751bCopy full SHA for 202751b
2 files changed
.github/workflows/ci.yml
@@ -106,9 +106,6 @@ jobs:
106
sudo udevadm control --reload-rules
107
sudo udevadm trigger --name-match=kvm
108
exclude:
109
- # numpy and pandas aren't available for 3.13 on iOS
110
- - backend: "iOS"
111
- python-version: "3.13"
112
# Support package isn't available for 3.13 on Linux
113
- backend: "linux-flatpak"
114
python-version: "3.13"
pyproject.toml
@@ -22,8 +22,9 @@ requires = [
22
"cryptography",
23
"lru_dict",
24
"pillow",
25
- "numpy",
26
- "pandas",
+ # Numpy/pandas aren't available for iOS on 3.13+.
+ "numpy; python_version < '3.13' or platform_system != 'iOS'",
27
+ "pandas; python_version < '3.13' or platform_system != 'iOS'",
28
]
29
test_requires = [
30
"pytest",
0 commit comments