From 37b41f6c2639cb5a7f128d307d72b53da66f35c3 Mon Sep 17 00:00:00 2001 From: ZJaume Date: Fri, 5 May 2023 12:54:56 +0000 Subject: [PATCH] Use fasttext-wheel PyPi does not allow git repos as dependencies and fasttext-wheel now also includes source distribution. So it can be compiled if wheel does not exist for the needed distribution. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 3084372..3f15903 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ requires-python = ">=3.8" dependencies = [ "cyhunspell>=2.0.2, <=2.0.3", "fastspell-dictionaries==3.0", - "fasttext @ git+https://github.com/bitextor/fastText", + "fasttext-wheel==0.9.2", "urllib3", "PyYAML", ]