From 251739a5f614714c698662700e0aa3502f68c4d9 Mon Sep 17 00:00:00 2001 From: Eric Joanis Date: Fri, 19 Jan 2024 11:48:21 -0500 Subject: [PATCH] fix(deps): lock numpy<2 because 2.0.0 is coming and has breaking changes See: https://pythonspeed.com/articles/numpy-2 When numpy 2.0.0 is actually out, we'll want to test g2p and our other projects against it before allowing it. --- requirements/requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements/requirements.txt b/requirements/requirements.txt index f4e3c950..5778f346 100644 --- a/requirements/requirements.txt +++ b/requirements/requirements.txt @@ -7,6 +7,7 @@ flask-cors>=3.0.9 flask-talisman>=0.7.0 flask-restful>=0.3.9 networkx>=2.6 +numpy>=1.20.2,<2 panphon>=0.19 pyyaml>=5.2 regex