Skip to content

Commit

Permalink
Update spacy and stanza dependencies (#48)
Browse files Browse the repository at this point in the history
* Restrict spacy to <3.0.0
* Relax stanza to <1.2.0
  • Loading branch information
adrianeboyd authored Sep 2, 2020
1 parent 29932d1 commit 4704da2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
spacy>=2.1.0
stanza>=1.0.0,<1.1.0
spacy>=2.1.0,<3.0.0
stanza>=1.0.0,<1.2.0
# Development dependencies
pytest>=4.0.0,<5.0.0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def setup_package():
version=about["__version__"],
license=about["__license__"],
packages=find_packages(),
install_requires=["spacy>=2.1.0", "stanza>=1.0.0,<1.1.0"],
install_requires=["spacy>=2.1.0,<3.0.0", "stanza>=1.0.0,<1.2.0"],
python_requires=">=3.6",
entry_points={"spacy_languages": ["stanza_en = spacy_stanza:StanzaLanguage"]},
classifiers=[
Expand Down

0 comments on commit 4704da2

Please sign in to comment.