Only install pathlib backport on Python < 3.4

This commit is contained in:
ines 2018-07-20 21:08:29 +02:00
parent e0caf3ae8c
commit 95641f4026
2 changed files with 3 additions and 3 deletions

View File

@ -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"

View File

@ -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',