From f451c6da22a8c239b4d253ec4ddeea1b3c554174 Mon Sep 17 00:00:00 2001 From: Shad Nygren Date: Thu, 7 Mar 2024 06:12:57 -0800 Subject: [PATCH] Update pyproject.toml Fix numpy=1.22.0 for compatibility with wav2lip --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 2f3d3ced0f..950cba97dc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ authors = [ ] dependencies = [ "typing-extensions>=4.5.0", - "numpy>=1.20.0", + "numpy==1.22.0", "diskcache>=5.6.1", "jinja2>=2.11.3", ]