Skip to content

Commit 60338df

Browse files
authored
Pin spaCy version to <3 (#314)
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?
1 parent 0cff3c9 commit 60338df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -224,8 +224,8 @@ def setup_package():
224224
"numpy>=1.15.0",
225225
"boto3",
226226
"requests>=2.13.0,<3.0.0",
227-
"spacy>=2.1.0"],
228-
setup_requires=['wheel', 'spacy>=2.1.0'],
227+
"spacy>=2.1.0,<3.0.0"],
228+
setup_requires=['wheel', 'spacy>=2.1.0,<3.0.0'],
229229
python_requires=">=3.6",
230230
packages=PACKAGES,
231231
package_data=PACKAGE_DATA,

0 commit comments

Comments
 (0)