Validate the currently installed pipeline packages and spaCy version. Checks if the installed packages are compatible and shows upgrade instructions if available. Should be run after `pip install -U spacy`. DOCS: https://spacy.io/api/cli#validate
()
| 20 | |
| 21 | @app.command("validate") |
| 22 | def validate_cli(): |
| 23 | """ |
| 24 | Validate the currently installed pipeline packages and spaCy version. Checks |
| 25 | if the installed packages are compatible and shows upgrade instructions if |
| 26 | available. Should be run after `pip install -U spacy`. |
| 27 | |
| 28 | DOCS: https://spacy.io/api/cli#validate |
| 29 | """ |
| 30 | validate() |
| 31 | |
| 32 | |
| 33 | def validate() -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…