File tree Expand file tree Collapse file tree 2 files changed +53
-23
lines changed
Expand file tree Collapse file tree 2 files changed +53
-23
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,8 @@ dev = [
6868 " setuptools-scm>=8.3.1" ,
6969]
7070apps = [
71- " onnx==1.18.0" , # for apps/onnx
71+ " onnx==1.18.0; platform_machine != 'armv7l'" , # for apps/onnx
72+ " onnx==1.17.0; platform_machine == 'armv7l'" , # for apps/onnx
7273 " pytest" , # unspecified onnx dependency
7374]
7475tools = [
@@ -198,12 +199,9 @@ conflicts = [
198199
199200[tool .uv .sources ]
200201halide-llvm = { index = " halide" }
201- numpy = [
202- { index = " piwheels" , marker = " platform_machine == 'armv7l'" },
203- ]
204- pillow = [
205- { index = " piwheels" , marker = " platform_machine == 'armv7l'" },
206- ]
202+ numpy = { index = " piwheels" , marker = " platform_machine == 'armv7l'" }
203+ onnx = { index = " piwheels" , marker = " platform_machine == 'armv7l'" }
204+ pillow = { index = " piwheels" , marker = " platform_machine == 'armv7l'" }
207205
208206[[tool .uv .index ]]
209207name = " halide"
You can’t perform that action at this time.
0 commit comments