diff options
author | David Robertson <davidr@element.io> | 2022-08-15 20:05:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-15 19:05:57 +0000 |
commit | d642ce4b3258012da6c024b0b5d1396d2a3e69dd (patch) | |
tree | daf0fc320f58f1364a2ee7e91f7eb0ddcffda58b /pyproject.toml | |
parent | Add a warning to retention documentation regarding the possibility of databas... (diff) | |
download | synapse-d642ce4b3258012da6c024b0b5d1396d2a3e69dd.tar.xz |
Use Pydantic to systematically validate a first batch of endpoints in `synapse.rest.client.account`. (#13188)
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml index a9f59a676f..4f1e0b5c19 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -158,6 +158,9 @@ packaging = ">=16.1" # At the time of writing, we only use functions from the version `importlib.metadata` # which shipped in Python 3.8. This corresponds to version 1.4 of the backport. importlib_metadata = { version = ">=1.4", python = "<3.8" } +# This is the most recent version of Pydantic with available on common distros. +pydantic = ">=1.7.4" + # Optional Dependencies |