mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-05 00:24:56 -04:00
Use importlib.metadata to read requirements (#12088)
* Pull runtime dep checks into their own module * Reimplement `check_requirements` using `importlib` I've tried to make this clearer. We start by working out which of Synapse's requirements we need to be installed here and now. I was surprised that there wasn't an easier way to see which packages were installed by a given extra. I've pulled out the error messages into functions that deal with "is this for an extra or not". And I've rearranged the loop over two different sets of requirements into one loop with a "must be instaled" flag. I hope you agree that this is clearer. * Test cases
This commit is contained in:
parent
4d6b6c17c8
commit
313581e4e9
13 changed files with 237 additions and 115 deletions
|
@ -20,7 +20,7 @@ from typing import Callable, Dict, Optional
|
|||
|
||||
import attr
|
||||
|
||||
from synapse.python_dependencies import DependencyException, check_requirements
|
||||
from synapse.util.check_dependencies import DependencyException, check_requirements
|
||||
|
||||
from ._base import Config, ConfigError
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue