Skip to content

Commit 9841666

Browse files
authored
Remove numpy<2 dependency (#362)
This causes an incompatibility with spaCy because no matching versions of numpy can be found when using both libraries at once. It looks like the tests pass again without the numpy<2 requirement so there is no reason to keep this requirement anymore.
1 parent 860e2ad commit 9841666

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ tokenizers = ">=0.15,<1.0"
2020
huggingface-hub = ">=0.20,<1.0"
2121
loguru = "^0.7.2"
2222
numpy = [
23-
{ version = ">=1.21, <2", python = "<3.12" },
24-
{ version = ">=1.26, <2", python = ">=3.12" }
23+
{ version = ">=1.21", python = "<3.12" },
24+
{ version = ">=1.26", python = ">=3.12" }
2525
]
2626
pillow = "^10.3.0"
2727
mmh3 = "^4.1.0"

0 commit comments

Comments
 (0)