From 3da8076a2b067a9faa75c2cd9eceba1ea3836dd0 Mon Sep 17 00:00:00 2001 From: Brandon Rising Date: Fri, 11 Oct 2024 14:40:22 -0400 Subject: [PATCH] fix: Pin onnx versions to builds that don't require rare dlls --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 83b57877639..3065ad4c587 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,8 +43,8 @@ dependencies = [ "invisible-watermark==0.2.0", # needed to install SDXL base and refiner using their repo_ids "mediapipe>=0.10.7", # needed for "mediapipeface" controlnet model "numpy==1.26.4", # >1.24.0 is needed to use the 'strict' argument to np.testing.assert_array_equal() - "onnx>=1.15.0", - "onnxruntime>=1.16.3", + "onnx==1.16.1", + "onnxruntime==1.19.2", "opencv-python==4.9.0.80", "pytorch-lightning==2.1.3", "safetensors==0.4.3",