From c1d5cc3b24ada6857bc32af13e0a0528a01fcb70 Mon Sep 17 00:00:00 2001 From: linhaifeng <1371675203@qq.com> Date: Thu, 5 Feb 2026 05:59:58 +0800 Subject: [PATCH] [Bugfix] fix a obvious logic error (#18254) --- python/pyproject.toml | 2 +- python/pyproject_xpu.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/python/pyproject.toml b/python/pyproject.toml index fd8cdb2d9..a4b394717 100755 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -19,7 +19,7 @@ dependencies = [ "aiohttp", "apache-tvm-ffi>=0.1.5,<0.2", "anthropic>=0.20.0", - "av ; sys_platform == 'linux' and (platform_machine == 'aarch64' or platform_machine == 'arm64' and platform_machine == 'armv7l')", + "av ; sys_platform == 'linux' and (platform_machine == 'aarch64' or platform_machine == 'arm64' or platform_machine == 'armv7l')", "blobfile==3.0.0", "build", "compressed-tensors", diff --git a/python/pyproject_xpu.toml b/python/pyproject_xpu.toml index f88480acf..98bd004ef 100644 --- a/python/pyproject_xpu.toml +++ b/python/pyproject_xpu.toml @@ -17,7 +17,7 @@ classifiers = [ dependencies = [ "torch==2.9.0", "torchcodec==0.8.0 ; sys_platform != 'linux' or (sys_platform == 'linux' and platform_machine != 'aarch64' and platform_machine != 'arm64' and platform_machine != 'armv7l')", # torchcodec does not exist in those systems. If not provided, transformer will use torchvision instead by default. - "av ; sys_platform == 'linux' and (platform_machine == 'aarch64' or platform_machine == 'arm64' and platform_machine == 'armv7l')", + "av ; sys_platform == 'linux' and (platform_machine == 'aarch64' or platform_machine == 'arm64' or platform_machine == 'armv7l')", "torchaudio==2.9.0", "torchvision", "sgl-kernel @ git+https://github.com/sgl-project/sgl-kernel-xpu.git",