From 4770d9895dc38cf9864ea4608e3c2672cb9c39cc Mon Sep 17 00:00:00 2001 From: Alex Ameen Date: Mon, 7 Oct 2024 18:55:49 -0500 Subject: [PATCH] update flake (#7032) Co-authored-by: psychedelicious <4822129+psychedelicious@users.noreply.github.com> --- flake.lock | 6 +++--- flake.nix | 4 ++-- pyproject.toml | 8 ++++---- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/flake.lock b/flake.lock index 536c8259b1..dedd56e74f 100644 --- a/flake.lock +++ b/flake.lock @@ -2,11 +2,11 @@ "nodes": { "nixpkgs": { "locked": { - "lastModified": 1690630721, - "narHash": "sha256-Y04onHyBQT4Erfr2fc82dbJTfXGYrf4V0ysLUYnPOP8=", + "lastModified": 1727955264, + "narHash": "sha256-lrd+7mmb5NauRoMa8+J1jFKYVa+rc8aq2qc9+CxPDKc=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "d2b52322f35597c62abf56de91b0236746b2a03d", + "rev": "71cd616696bd199ef18de62524f3df3ffe8b9333", "type": "github" }, "original": { diff --git a/flake.nix b/flake.nix index 3ccc665812..07af19e93b 100644 --- a/flake.nix +++ b/flake.nix @@ -34,7 +34,7 @@ cudaPackages.cudnn cudaPackages.cuda_nvrtc cudatoolkit - pkgconfig + pkg-config libconfig cmake blas @@ -66,7 +66,7 @@ black # Frontend. - yarn + pnpm_8 nodejs ]; LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath buildInputs; diff --git a/pyproject.toml b/pyproject.toml index 1f8a60d9bd..83b5787763 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["setuptools~=65.5", "pip~=22.3", "wheel"] +requires = ["setuptools", "pip", "wheel"] build-backend = "setuptools.build_meta" [project] @@ -41,10 +41,10 @@ dependencies = [ "diffusers[torch]==0.27.2", "gguf==0.10.0", "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 + "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.15.0", + "onnxruntime>=1.16.3", "opencv-python==4.9.0.80", "pytorch-lightning==2.1.3", "safetensors==0.4.3",