From 484360d210af60d61c732815353ac372bc81b4b8 Mon Sep 17 00:00:00 2001 From: Zheng Qu Date: Wed, 5 Jun 2024 23:13:03 +0200 Subject: [PATCH] Fix the broken `scipy` version `scipy.linag.tril` is missing for `scipy > v1.12.0`. This change adds the constraint `<= 1.12.0` for the `scipy` python package. --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index e18c724a..f194d462 100644 --- a/requirements.txt +++ b/requirements.txt @@ -11,7 +11,7 @@ flax == 0.7.5 ml_collections >= 0.1.0 tqdm >= 4.60.0 absl-py >= 0.12.0 -scipy >= 1.6.0 +scipy <=1.12.0,>= 1.6.0 wandb >= 0.12.14 einops >= 0.6.1 imageio >= 2.31.1