mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-10 19:57:17 +03:00
Fix packaging pin (#6212)
* pin packaging to >=20.0 * ignore spacy-pkuseg in requirements unit test
This commit is contained in:
parent
cfb9770a94
commit
fff3f8ccfa
|
@ -18,7 +18,7 @@ pydantic>=1.5.0,<2.0.0
|
|||
pytokenizations
|
||||
# Official Python utilities
|
||||
setuptools
|
||||
packaging
|
||||
packaging>=20.0
|
||||
importlib_metadata>=0.20; python_version < "3.8"
|
||||
typing_extensions>=3.7.4; python_version < "3.8"
|
||||
# Development dependencies
|
||||
|
|
|
@ -55,7 +55,7 @@ install_requires =
|
|||
pytokenizations
|
||||
# Official Python utilities
|
||||
setuptools
|
||||
packaging
|
||||
packaging>=20.0
|
||||
importlib_metadata>=0.20; python_version < "3.8"
|
||||
typing_extensions>=3.7.4; python_version < "3.8"
|
||||
|
||||
|
|
|
@ -10,12 +10,14 @@ def test_build_dependencies():
|
|||
"mock",
|
||||
"flake8",
|
||||
]
|
||||
# ignore language-specific packages that shouldn't be installed by all
|
||||
libs_ignore_setup = [
|
||||
"fugashi",
|
||||
"natto-py",
|
||||
"pythainlp",
|
||||
"sudachipy",
|
||||
"sudachidict_core",
|
||||
"spacy-pkuseg",
|
||||
]
|
||||
|
||||
# check requirements.txt
|
||||
|
|
Loading…
Reference in New Issue
Block a user