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: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@ authors = [{ name = "urasakikeisuke", email = "[email protected]" }]
dependencies = [
"numpy>=1.21.0",
"pydantic >=1.10.8, <3.0.0",
"python-neo-lzf>=0.3.0",
# python-neo-lzf lacks pre-built wheels for aarch64 (Arm64).
# To enable installation on Arm platforms without requiring compilation tools,
# we switch to python-lzf for aarch64/arm64 environments.
"python-neo-lzf>=0.3.0; platform_machine != 'aarch64' and platform_machine != 'arm64'",
"python-lzf; platform_machine == 'aarch64' or platform_machine == 'arm64'",
]
readme = "README.md"
requires-python = ">= 3.8.2"
Expand Down
Loading