mirror of https://github.com/explosion/spaCy.git
add newer sputnik version
This commit is contained in:
parent
9cde3f37bf
commit
55bd1469dc
|
@ -61,8 +61,8 @@ build_script:
|
||||||
- ps: appveyor\download.ps1
|
- ps: appveyor\download.ps1
|
||||||
- "tar -xzf corpora/en/wordnet.tar.gz"
|
- "tar -xzf corpora/en/wordnet.tar.gz"
|
||||||
- "%CMD_IN_ENV% python bin/init_model.py en lang_data/ corpora/ data"
|
- "%CMD_IN_ENV% python bin/init_model.py en lang_data/ corpora/ data"
|
||||||
- "%CMD_IN_ENV% sputnik build ."
|
- "%CMD_IN_ENV% sputnik build . en_default.sputnik"
|
||||||
- "%CMD_IN_ENV% sputnik install en_default-*.sputnik"
|
- "%CMD_IN_ENV% sputnik install en_default.sputnik"
|
||||||
|
|
||||||
test_script:
|
test_script:
|
||||||
# Run the project tests
|
# Run the project tests
|
||||||
|
|
|
@ -22,8 +22,8 @@ install:
|
||||||
- "cd ../../"
|
- "cd ../../"
|
||||||
- "export PYTHONPATH=`pwd`"
|
- "export PYTHONPATH=`pwd`"
|
||||||
- "python bin/init_model.py en lang_data/ corpora/ data"
|
- "python bin/init_model.py en lang_data/ corpora/ data"
|
||||||
- "sputnik build ."
|
- "sputnik build . en_default.sputnik"
|
||||||
- "sputnik install en_default-*.sputnik"
|
- "sputnik install en_default.sputnik"
|
||||||
|
|
||||||
# run tests
|
# run tests
|
||||||
script:
|
script:
|
||||||
|
|
|
@ -10,4 +10,4 @@ plac
|
||||||
six
|
six
|
||||||
ujson
|
ujson
|
||||||
cloudpickle
|
cloudpickle
|
||||||
sputnik == 0.6.2
|
sputnik == 0.6.3
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -179,7 +179,7 @@ def run_setup(exts):
|
||||||
license="MIT",
|
license="MIT",
|
||||||
install_requires=['numpy', 'murmurhash == 0.24', 'cymem == 1.30', 'preshed == 0.44',
|
install_requires=['numpy', 'murmurhash == 0.24', 'cymem == 1.30', 'preshed == 0.44',
|
||||||
'thinc == 4.0.0', "text_unidecode", 'plac', 'six',
|
'thinc == 4.0.0', "text_unidecode", 'plac', 'six',
|
||||||
'ujson', 'cloudpickle', 'sputnik == 0.6.2'],
|
'ujson', 'cloudpickle', 'sputnik == 0.6.3'],
|
||||||
setup_requires=["headers_workaround"],
|
setup_requires=["headers_workaround"],
|
||||||
cmdclass = {'build_ext': build_ext_subclass },
|
cmdclass = {'build_ext': build_ext_subclass },
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue