mirror of https://github.com/explosion/spaCy.git
fix version
This commit is contained in:
parent
03d2f98cd5
commit
12de895e60
|
@ -10,3 +10,4 @@ plac
|
||||||
six
|
six
|
||||||
ujson
|
ujson
|
||||||
cloudpickle
|
cloudpickle
|
||||||
|
sputnik == 0.4.1
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -179,7 +179,7 @@ def run_setup(exts):
|
||||||
license="MIT",
|
license="MIT",
|
||||||
install_requires=['numpy', 'murmurhash', 'cymem == 1.30', 'preshed == 0.44',
|
install_requires=['numpy', 'murmurhash', 'cymem == 1.30', 'preshed == 0.44',
|
||||||
'thinc == 4.0.0', "text_unidecode", 'plac', 'six',
|
'thinc == 4.0.0', "text_unidecode", 'plac', 'six',
|
||||||
'ujson', 'cloudpickle'],
|
'ujson', 'cloudpickle', 'sputnik == 0.4.1'],
|
||||||
setup_requires=["headers_workaround"],
|
setup_requires=["headers_workaround"],
|
||||||
cmdclass = {'build_ext': build_ext_subclass },
|
cmdclass = {'build_ext': build_ext_subclass },
|
||||||
)
|
)
|
||||||
|
|
|
@ -18,8 +18,7 @@ def migrate(path):
|
||||||
def link(package, path):
|
def link(package, path):
|
||||||
if os.path.exists(path):
|
if os.path.exists(path):
|
||||||
os.unlink(path)
|
os.unlink(path)
|
||||||
os.symlink(os.path.join(package.path, 'data'),
|
os.symlink(package.dir_path('data'), path)
|
||||||
os.path.join(path))
|
|
||||||
|
|
||||||
|
|
||||||
@plac.annotations(
|
@plac.annotations(
|
||||||
|
|
Loading…
Reference in New Issue