aboutsummaryrefslogtreecommitdiff
path: root/run_mypy.py
diff options
context:
space:
mode:
authorDaniel Mensinger <daniel@mensinger-ka.de>2021-06-05 16:40:02 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2021-06-06 20:30:24 +0300
commit25875ae0d37b68635a61298a24917c313fb761e1 (patch)
treed4419cd0477690c8f0c093a5c6210c0baf5cce2b /run_mypy.py
parent71906c4bf842bfa9ea65893ae9e3ddb2b61b0440 (diff)
downloadmeson-25875ae0d37b68635a61298a24917c313fb761e1.zip
meson-25875ae0d37b68635a61298a24917c313fb761e1.tar.gz
meson-25875ae0d37b68635a61298a24917c313fb761e1.tar.bz2
typing: Fully annotate dependencies.{detect,factory} + some other fixes
Diffstat (limited to 'run_mypy.py')
-rwxr-xr-xrun_mypy.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/run_mypy.py b/run_mypy.py
index be9519d..c805ca4 100755
--- a/run_mypy.py
+++ b/run_mypy.py
@@ -18,6 +18,8 @@ modules = [
# specific files
'mesonbuild/arglist.py',
# 'mesonbuild/coredata.py',
+ 'mesonbuild/dependencies/__init__.py',
+ 'mesonbuild/dependencies/factory.py',
'mesonbuild/dependencies/base.py',
'mesonbuild/dependencies/cmake.py',
'mesonbuild/dependencies/coarrays.py',
@@ -25,6 +27,7 @@ modules = [
'mesonbuild/dependencies/dub.py',
'mesonbuild/dependencies/platform.py',
'mesonbuild/dependencies/cuda.py',
+ 'mesonbuild/dependencies/detect.py',
'mesonbuild/dependencies/boost.py',
'mesonbuild/dependencies/hdf5.py',
'mesonbuild/dependencies/mpi.py',