From 55b7596e2c42ad858b5daa82f886cfef1e7a0ec8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marta=20Ba=C3=B1=C3=B3n?= <34235767+mbanon@users.noreply.github.com> Date: Fri, 26 Jul 2024 14:07:43 +0200 Subject: [PATCH] Restrict numpy version + bump version --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 6d0f13c..ab5b82c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "fastspell" -version = "0.11" +version = "0.11.1" license = {file = "LICENSE"} readme = "README.md" description = "Targetted language identifier, based on FastText and Hunspell." @@ -9,6 +9,7 @@ dependencies = [ "cyhunspell>=2.0.2, <=2.0.3", "fastspell-dictionaries==3.2", "fasttext-wheel==0.9.2", + "numpy<2", "urllib3", "PyYAML", "regex",