mirror of https://github.com/explosion/spaCy.git
Require thinc 6.6, and compile the nn_parser module
This commit is contained in:
parent
4b9d69f428
commit
48de4ed49f
|
@ -3,7 +3,7 @@ pathlib
|
||||||
numpy>=1.7
|
numpy>=1.7
|
||||||
cymem>=1.30,<1.32
|
cymem>=1.30,<1.32
|
||||||
preshed>=1.0.0,<2.0.0
|
preshed>=1.0.0,<2.0.0
|
||||||
thinc>=6.5.0,<6.6.0
|
thinc>=6.6.0,<6.7.0
|
||||||
murmurhash>=0.26,<0.27
|
murmurhash>=0.26,<0.27
|
||||||
plac<1.0.0,>=0.9.6
|
plac<1.0.0,>=0.9.6
|
||||||
six
|
six
|
||||||
|
|
3
setup.py
3
setup.py
|
@ -30,6 +30,7 @@ MOD_NAMES = [
|
||||||
'spacy.syntax._state',
|
'spacy.syntax._state',
|
||||||
'spacy.tokenizer',
|
'spacy.tokenizer',
|
||||||
'spacy.syntax.parser',
|
'spacy.syntax.parser',
|
||||||
|
'spacy.syntax.nn_parser',
|
||||||
'spacy.syntax.beam_parser',
|
'spacy.syntax.beam_parser',
|
||||||
'spacy.syntax.nonproj',
|
'spacy.syntax.nonproj',
|
||||||
'spacy.syntax.transition_system',
|
'spacy.syntax.transition_system',
|
||||||
|
@ -190,7 +191,7 @@ def setup_package():
|
||||||
'murmurhash>=0.26,<0.27',
|
'murmurhash>=0.26,<0.27',
|
||||||
'cymem>=1.30,<1.32',
|
'cymem>=1.30,<1.32',
|
||||||
'preshed>=1.0.0,<2.0.0',
|
'preshed>=1.0.0,<2.0.0',
|
||||||
'thinc>=6.5.0,<6.6.0',
|
'thinc>=6.6.0,<6.7.0',
|
||||||
'plac<1.0.0,>=0.9.6',
|
'plac<1.0.0,>=0.9.6',
|
||||||
'six',
|
'six',
|
||||||
'pathlib',
|
'pathlib',
|
||||||
|
|
Loading…
Reference in New Issue