Skip to content

Commit

Permalink
Re-enable iOS testing for 3.13, exclusing numpy/pandas dependency.
Browse files Browse the repository at this point in the history
  • Loading branch information
freakboy3742 committed Oct 22, 2024
1 parent f4c94cb commit 202751b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,6 @@ jobs:
sudo udevadm control --reload-rules
sudo udevadm trigger --name-match=kvm
exclude:
# numpy and pandas aren't available for 3.13 on iOS
- backend: "iOS"
python-version: "3.13"
# Support package isn't available for 3.13 on Linux
- backend: "linux-flatpak"
python-version: "3.13"
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,9 @@ requires = [
"cryptography",
"lru_dict",
"pillow",
"numpy",
"pandas",
# Numpy/pandas aren't available for iOS on 3.13+.
"numpy; python_version < '3.13' or platform_system != 'iOS'",
"pandas; python_version < '3.13' or platform_system != 'iOS'",
]
test_requires = [
"pytest",
Expand Down

0 comments on commit 202751b

Please sign in to comment.