From 9b250985bbc292e46b9648de4ec4cbe30fa3a6b2 Mon Sep 17 00:00:00 2001 From: Aaron Gonzales Date: Wed, 10 Jul 2024 12:10:56 -0600 Subject: [PATCH] pinning numpy transitive dep version to <2 --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 1837379..f4d0d67 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,7 +21,8 @@ requires-python = ">=3.11,<3.12" dependencies = [ # Core "click>=8.1.7", - "scipy>=1.10.1", + "scipy==1.13.1", + "numpy<2.0.0", "wandb>=0.16.3", "protobuf>=3.20.2", "urllib3>=1.26.18,<2",