mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
cf65a80f36
* Move test * Allow default in Lookups.get_table * Start with blank tables in Lookups.from_bytes * Refactor lemmatizer to hold instance of Lookups * Get lookups table within the lemmatization methods to make sure it references the correct table (even if the table was replaced or modified, e.g. when loading a model from disk) * Deprecate other arguments on Lemmatizer.__init__ and expect Lookups for consistency * Remove old and unsupported Lemmatizer.load classmethod * Refactor language-specific lemmatizers to inherit as much as possible from base class and override only what they need * Update tests and docs * Fix more tests * Fix lemmatizer * Upgrade pytest to try and fix weird CI errors * Try pytest 4.6.5
22 lines
459 B
Plaintext
22 lines
459 B
Plaintext
# Our libraries
|
|
cymem>=2.0.2,<2.1.0
|
|
preshed>=3.0.2,<3.1.0
|
|
thinc>=7.1.1,<7.2.0
|
|
blis>=0.4.0,<0.5.0
|
|
murmurhash>=0.28.0,<1.1.0
|
|
wasabi>=0.2.0,<1.1.0
|
|
srsly>=0.1.0,<1.1.0
|
|
# Third party dependencies
|
|
numpy>=1.15.0
|
|
requests>=2.13.0,<3.0.0
|
|
plac<1.0.0,>=0.9.6
|
|
pathlib==1.0.1; python_version < "3.4"
|
|
# Optional dependencies
|
|
jsonschema>=2.6.0,<3.1.0
|
|
# Development dependencies
|
|
cython>=0.25
|
|
pytest>=4.6.5
|
|
pytest-timeout>=1.3.0,<2.0.0
|
|
mock>=2.0.0,<3.0.0
|
|
flake8>=3.5.0,<3.6.0
|