mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-10 19:57:17 +03:00
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
|
||||
cymem>=1.30,<1.32
|
||||
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
|
||||
plac<1.0.0,>=0.9.6
|
||||
six
|
||||
|
|
3
setup.py
3
setup.py
|
@ -30,6 +30,7 @@ MOD_NAMES = [
|
|||
'spacy.syntax._state',
|
||||
'spacy.tokenizer',
|
||||
'spacy.syntax.parser',
|
||||
'spacy.syntax.nn_parser',
|
||||
'spacy.syntax.beam_parser',
|
||||
'spacy.syntax.nonproj',
|
||||
'spacy.syntax.transition_system',
|
||||
|
@ -190,7 +191,7 @@ def setup_package():
|
|||
'murmurhash>=0.26,<0.27',
|
||||
'cymem>=1.30,<1.32',
|
||||
'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',
|
||||
'six',
|
||||
'pathlib',
|
||||
|
|
Loading…
Reference in New Issue
Block a user