Skip to main content
Version: 2.0 (deprecated)

mypy


The MyPy Python type checker (http://mypy-lang.org/).

Backend: ``

Config section: [mypy]

Basic options

args

--mypy-args="[<shell_str>, <shell_str>, ...]"
PANTS_MYPY_ARGS
pants.toml
[mypy]
args = [
<shell_str>,
<shell_str>,
...,
]
default: []

Arguments to pass directly to mypy, e.g. --mypy-args="--python-version 3.7 --disallow-any-expr"

skip

--[no-]mypy-skip
PANTS_MYPY_SKIP
pants.toml
[mypy]
skip = <bool>
default: False

Don't use MyPy when running /home/josh/work/scie-pants/dist/pants lint.

Advanced options

config

--mypy-config=<file_option>
PANTS_MYPY_CONFIG
pants.toml
[mypy]
config = <file_option>
default: None

Path to mypy.ini or alternative MyPy config file

entry_point

--mypy-entry-point=<str>
PANTS_MYPY_ENTRY_POINT
pants.toml
[mypy]
entry_point = <str>
default: mypy

The main module for the tool. Usually, you will not want to change this from the default.

extra_requirements

--mypy-extra-requirements="['<str>', '<str>', ...]"
PANTS_MYPY_EXTRA_REQUIREMENTS
pants.toml
[mypy]
extra_requirements = [
'<str>',
'<str>',
...,
]
default: []

Any additional requirement strings to use with the tool. This is useful if the tool allows you to install plugins or if you need to constrain a dependency to a certain version.

interpreter_constraints

--mypy-interpreter-constraints="['<str>', '<str>', ...]"
PANTS_MYPY_INTERPRETER_CONSTRAINTS
pants.toml
[mypy]
interpreter_constraints = [
'<str>',
'<str>',
...,
]
default:
[
  "CPython>=3.6"
]

Python interpreter constraints for this tool.

source_plugins

--mypy-source-plugins="[<target_option>, <target_option>, ...]"
PANTS_MYPY_SOURCE_PLUGINS
pants.toml
[mypy]
source_plugins = [
<target_option>,
<target_option>,
...,
]
default: []

An optional list of mypy_source_plugin target addresses. This allows you to load custom plugins defined in source code. Run ./pants help mypy_source_plugin for instructions, including how to load third-party plugins.

version

--mypy-version=<str>
PANTS_MYPY_VERSION
pants.toml
[mypy]
version = <str>
default: mypy==0.782

Requirement string for the tool.

Deprecated options

None

None