Skip to content

Commit

Permalink
Freeze numpy version (#365)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
fhenneke authored Jun 18, 2024
1 parent ece65bf commit a3fe77d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit a3fe77d

Please sign in to comment.