Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ requires = [
or (platform_system == 'iOS' and python_version == '3.13') \
or (platform_system == 'Android' and python_version == '3.13') \
or (platform_system == 'Linux' and python_version == '3.13')""",
# Numpy not available on iOS for 3.13+, or all on 3.14.
# Numpy not available on 3.14+.
"""numpy; \
(platform_system != 'iOS' and platform_system != 'Android' and python_version < '3.14') \
or (platform_system == 'iOS' and python_version < '3.13') \
or (platform_system == 'iOS' and python_version < '3.14') \
or (platform_system == 'Android' and python_version < '3.14')""",
# Pandas not available on iOS for 3.13+, or all on 3.14.
# Pandas not available on iOS for 3.13+, or all on 3.14+.
"""pandas; \
(platform_system != 'iOS' and platform_system != 'Android' and python_version < '3.14') \
or (platform_system == 'iOS' and python_version < '3.13') \
Expand Down