From a3fe77d4467991b366540a6422f55e06526f658c Mon Sep 17 00:00:00 2001 From: Felix Henneke Date: Tue, 18 Jun 2024 03:06:17 +0200 Subject: [PATCH] Freeze numpy version (#365) Numpy released a new major version 2.0.0. For some reason this makes our code crash. This was noticed in #364 where unrelated tests started failing. I guess the problem is due to us using an outdated pandas version. A quick fix is implemented in this PR. The version of numpy is fixed to the latest release before 2.0.0. This is not the first time we freeze a dependency to an old version. Midterm we should update our dependencies instead. --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index 17781aca..b7a3f4f6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -17,3 +17,4 @@ SQLAlchemy<2.0.0 sqlalchemy-stubs==0.4 pandas==2.0.3 pandas-stubs==2.0.2.230605 +numpy==1.26.4