Skip to main content
Version: 2.0.x (deprecated)

mypy


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

Backend: pants.core

Config section: [mypy]

Basic options

skip

--[no-]mypy-skip
PANTS_MYPY_SKIP
default: False

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

args

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

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

Advanced options

version

--mypy-version=<str>
PANTS_MYPY_VERSION
default: mypy==0.782

Requirement string for the tool.

extra_requirements

--mypy-extra-requirements="['<str>', '<str>', ...]"
PANTS_MYPY_EXTRA_REQUIREMENTS
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.

entry_point

--mypy-entry-point=<str>
PANTS_MYPY_ENTRY_POINT
default: mypy

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

interpreter_constraints

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

Python interpreter constraints for this tool.

config

--mypy-config=<file_option>
PANTS_MYPY_CONFIG
default: None

Path to mypy.ini or alternative MyPy config file

source_plugins

--mypy-source-plugins="[<target_option>, <target_option>, ...]"
PANTS_MYPY_SOURCE_PLUGINS
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.

Deprecated options

None