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
11 changes: 1 addition & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,7 @@ authors = [{ name = "urasakikeisuke", email = "keisuke.urasaki@map4.jp" }]
dependencies = [
"numpy>=1.21.0",
"pydantic >=1.10.8, <3.0.0",

# NOTE: `python-neo-lzf` currently lacks pre-built wheels for Linux aarch64.
# To avoid compilation errors on Linux ARM environments, we use `python-lzf` as a fallback.
# macOS ARM64 (Apple Silicon) is supported by `python-neo-lzf` (Universal2), so it is not affected.

# 1. Fallback: Use `python-lzf` ONLY on Linux ARM64.
"python-lzf; sys_platform == 'linux' and (platform_machine == 'aarch64' or platform_machine == 'arm64')",

# 2. Standard: Use `python-neo-lzf` on all other platforms (macOS, Windows, x86_64 Linux, etc.).
"python-neo-lzf>=0.3.0; sys_platform != 'linux' or (platform_machine != 'aarch64' and platform_machine != 'arm64')",
"python-neo-lzf>=0.3.5",
]
readme = "README.md"
requires-python = ">= 3.8.2"
Expand Down
Loading