More thorough mypy checks

This commit is contained in:
Itamar Turner-Trauring 2023-11-21 08:19:32 -05:00
parent e4bf0a346b
commit fe8a94089c

View File

@ -134,7 +134,12 @@ deps =
foolscap
# Upgrade when new releases come out:
Twisted==23.10.0
commands = mypy src
commands =
# Different versions of Python have a different standard library, and we
# want to be compatible with all the variations. For speed's sake we only do
# the earliest and latest versions.
mypy --python-version=3.8 src
mypy --python-version=3.12 src
[testenv:draftnews]