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

isort


The Python import sorter tool (https://timothycrosley.github.io/isort/).

Backend: pants.core

Config section: [isort]

Basic options

skip

--[no-]isort-skip
PANTS_ISORT_SKIP
default: False

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

args

--isort-args="[<shell_str>, <shell_str>, ...]"
PANTS_ISORT_ARGS
default: []

Arguments to pass directly to isort, e.g. --isort-args="--case-sensitive --trailing-comma".

Advanced options

version

--isort-version=<str>
PANTS_ISORT_VERSION
default: isort[pyproject]>=5.5.1,<5.6

Requirement string for the tool.

extra_requirements

--isort-extra-requirements="['<str>', '<str>', ...]"
PANTS_ISORT_EXTRA_REQUIREMENTS
default: ["setuptools"]

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

--isort-entry-point=<str>
PANTS_ISORT_ENTRY_POINT
default: isort.main

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

interpreter_constraints

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

Python interpreter constraints for this tool.

config

--isort-config="[<file_option>, <file_option>, ...]"
PANTS_ISORT_CONFIG
default: []

Path to isort.cfg or alternative isort config file(s).

Deprecated options

None