-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* restricted the package dependency of spacy to <3 - Reported by #48 - This will act as a temporary fix. Permanent fix in #49 * added py 3.9 to github action and updated requirements.txt * some ci issue occuring when installing mecab-python3
- Loading branch information
Showing
3 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
setuptools.setup( | ||
name="contextualSpellCheck", | ||
version="0.3.3", | ||
version="0.3.4", | ||
author="R1j1t", | ||
author_email="[email protected]", | ||
description="Contextual spell correction using BERT (bidirectional representations)", | ||
|
@@ -28,5 +28,5 @@ | |
"Development Status :: 4 - Beta", | ||
], | ||
python_requires=">=3.6", | ||
install_requires=["torch", "editdistance", "transformers", "spacy"], | ||
install_requires=["torch", "editdistance", "transformers", "spacy < 3.0.0"], | ||
) |