summary refs log tree commit diff
path: root/setup.py
diff options
context:
space:
mode:
authorJonathan de Jong <jonathan@automatia.nl>2020-10-20 13:55:21 +0200
committerGitHub <noreply@github.com>2020-10-20 07:55:21 -0400
commit84c0e46cced7b1fe0e3fd27eed5111884959cb36 (patch)
tree4735e439a6bd99656b3eb0f732a39baaca539f06 /setup.py
parentRemove some extraneous @unittest.INFOs on unit tests (#8592) (diff)
downloadsynapse-84c0e46cced7b1fe0e3fd27eed5111884959cb36.tar.xz
Update mypy to 0.790, and move dependencies to extras (#8583)
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index 08843fe2a3..494f50239f 100755
--- a/setup.py
+++ b/setup.py
@@ -102,6 +102,8 @@ CONDITIONAL_REQUIREMENTS["lint"] = [
     "flake8",
 ]
 
+CONDITIONAL_REQUIREMENTS["mypy"] = ["mypy==0.790", "mypy-zope"]
+
 # Dependencies which are exclusively required by unit test code. This is
 # NOT a list of all modules that are necessary to run the unit tests.
 # Tests assume that all optional dependencies are installed.