diff options
author | David Robertson <davidr@element.io> | 2022-04-27 14:10:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-27 13:10:31 +0000 |
commit | 30c8e7e408322967e5beb2a64ef5f796cb8df226 (patch) | |
tree | 1d65d45fd7ddf5735c80282c62ae1cc5aae2b708 /pyproject.toml | |
parent | Remove unused `# type: ignore`s (#12531) (diff) | |
download | synapse-30c8e7e408322967e5beb2a64ef5f796cb8df226.tar.xz |
Make `scripts-dev` pass `mypy --disallow-untyped-defs` (#12356)
Not enforced in config yet. One day.
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml index bdded78434..e6f2dc16cd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -251,6 +251,7 @@ flake8 = "*" mypy = "==0.931" mypy-zope = "==0.3.5" types-bleach = ">=4.1.0" +types-commonmark = ">=0.9.2" types-jsonschema = ">=3.2.0" types-opentracing = ">=2.4.2" types-Pillow = ">=8.3.4" @@ -270,7 +271,8 @@ idna = ">=2.5" # The following are used by the release script click = "==8.1.0" -GitPython = "==3.1.14" +# GitPython was == 3.1.14; bumped to 3.1.20, the first release with type hints. +GitPython = ">=3.1.20" commonmark = "==0.9.1" pygithub = "==1.55" # The following are executed as commands by the release script. |