Skip to content

Commit

Permalink
Fix Pandas-Numpy clash
Browse files Browse the repository at this point in the history
Numpy was upgraded to 2.0.0 on 16 June 2024, which has broken the Pandas import, so we lock Numpy to 1.26.4
  • Loading branch information
woodthom2 authored Jun 21, 2024
1 parent b2ce374 commit 6392abc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ dependencies = [
"openpyxl==3.1.2; python_version <= '3.12'",
"spacy==3.5.3; python_version <= '3.12'",
"wget==3.2; python_version <= '3.12'",
"sentence-transformers==2.2.2; python_version <= '3.12'"
"sentence-transformers==2.2.2; python_version <= '3.12'",
"numpy==1.26.4; python_version <= '3.12'"
]

[project.optional-dependencies]
Expand Down

0 comments on commit 6392abc

Please sign in to comment.