]> git.ipfire.org Git - thirdparty/tornado.git/blame - setup.cfg
docs: Update intersphinx references for python 3.12
[thirdparty/tornado.git] / setup.cfg
CommitLineData
acf0a589 1[metadata]
2license_file = LICENSE
3
27a72606 4[mypy]
aa59da6e 5python_version = 3.8
c50aed0f 6no_implicit_optional = True
27a72606 7
bc4db0d0 8[mypy-tornado.*,tornado.platform.*]
27a72606 9disallow_untyped_defs = True
c0d6434e 10
d3e1fb3c
BD
11# It's generally too tedious to require type annotations in tests, but
12# we do want to type check them as much as type inference allows.
bc4db0d0
BD
13[mypy-tornado.test.*]
14disallow_untyped_defs = False
90a7ceda 15check_untyped_defs = True