mirror of https://github.com/explosion/spaCy.git
Only install pathlib backport on Python < 3.4
This commit is contained in:
parent
e0caf3ae8c
commit
95641f4026
|
@ -1,5 +1,4 @@
|
|||
cython>=0.24,<0.28.0
|
||||
pathlib
|
||||
numpy>=1.7
|
||||
cymem>=1.30,<1.32
|
||||
preshed>=1.0.0,<2.0.0
|
||||
|
@ -12,3 +11,4 @@ regex==2017.4.5
|
|||
requests>=2.13.0,<3.0.0
|
||||
pytest>=3.6.0,<4.0.0
|
||||
mock>=2.0.0,<3.0.0
|
||||
pathlib==1.0.1; python_version < "3.4"
|
||||
|
|
4
setup.py
4
setup.py
|
@ -192,11 +192,11 @@ def setup_package():
|
|||
'preshed>=1.0.0,<2.0.0',
|
||||
'thinc==6.10.3.dev0',
|
||||
'plac<1.0.0,>=0.9.6',
|
||||
'pathlib',
|
||||
'ujson>=1.35',
|
||||
'dill>=0.2,<0.3',
|
||||
'regex==2017.4.5',
|
||||
'requests>=2.13.0,<3.0.0'],
|
||||
'requests>=2.13.0,<3.0.0',
|
||||
'pathlib==1.0.1; python_version < "3.4"'],
|
||||
classifiers=[
|
||||
'Development Status :: 5 - Production/Stable',
|
||||
'Environment :: Console',
|
||||
|
|
Loading…
Reference in New Issue