Skip to content

Commit

Permalink
Pin spaCy version to <3 (#314)
Browse files Browse the repository at this point in the history
This is already specified in requirements.txt, but not in setup.py. Also
the version spec for requests looks similar, maybe it was put there by
mistake?
  • Loading branch information
polm committed Jun 22, 2021
1 parent 0cff3c9 commit 60338df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,8 +224,8 @@ def setup_package():
"numpy>=1.15.0",
"boto3",
"requests>=2.13.0,<3.0.0",
"spacy>=2.1.0"],
setup_requires=['wheel', 'spacy>=2.1.0'],
"spacy>=2.1.0,<3.0.0"],
setup_requires=['wheel', 'spacy>=2.1.0,<3.0.0'],
python_requires=">=3.6",
packages=PACKAGES,
package_data=PACKAGE_DATA,
Expand Down

0 comments on commit 60338df

Please sign in to comment.