From 82218c91a16452e7aa28fd3976df78b347a709dc Mon Sep 17 00:00:00 2001 From: Simon de Vlieger Date: Tue, 5 Mar 2024 11:11:18 +0100 Subject: [PATCH] tox: remove isort The role of the `isort` check is now performed by `ruff` instead of `isort`. --- Makefile | 2 +- tox.ini | 9 +-------- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/Makefile b/Makefile index 0115300a..2093aa5e 100644 --- a/Makefile +++ b/Makefile @@ -248,7 +248,7 @@ test-all: .PHONY: lint lint: - tox run-parallel -e ruff,pylint,autopep8,isort,mypy,mypy-strict + tox run-parallel -e ruff,pylint,autopep8,mypy,mypy-strict # # Building packages diff --git a/tox.ini b/tox.ini index a843cfb6..eb07aed0 100644 --- a/tox.ini +++ b/tox.ini @@ -6,7 +6,7 @@ env_list = labels = test = py{36,37,38,39,310,311} - lint = ruff, isort, autopep8, pylint + lint = ruff, autopep8, pylint type = mypy,mypy-strict [testenv] @@ -45,13 +45,6 @@ deps = commands = bash -c 'python -m ruff check {env:LINTABLES}' -[testenv:isort] -deps = - isort==5.12.0 - -commands = - bash -c 'python -m isort --check --diff {env:LINTABLES}' - [testenv:autopep8] deps = autopep8==2.0.2