From 52fd8e17c6aedbc68f58f1169363d6cc216f405b Mon Sep 17 00:00:00 2001 From: Damien Baty Date: Mon, 6 Jul 2020 00:07:33 +0200 Subject: tox: Don't mention isort in dependencies isort is already a dependency of pylint, there is no need to mention it explicitly. Except for the "formatting" environment where we want to pin a specific version to avoid noise when a new version of isort is released that reports errors. --- tox.ini | 3 --- 1 file changed, 3 deletions(-) diff --git a/tox.ini b/tox.ini index 221288a1a..6a13e1ce5 100644 --- a/tox.ini +++ b/tox.ini @@ -5,7 +5,6 @@ skip_missing_interpreters = true [testenv:pylint] deps = git+https://github.com/pycqa/astroid@master - isort pytest commands = # This would be greatly simplified by a solution for https://github.com/PyCQA/pylint/issues/352 @@ -56,7 +55,6 @@ commands = deps = https://github.com/PyCQA/astroid/tarball/master#egg=astroid-master-2.0 coverage<5.0 - isort mccabe # isort 5 is not compatible with Python 3.5 py35: isort>=4.2.5,<5 @@ -148,7 +146,6 @@ commands = deps = https://github.com/PyCQA/astroid/tarball/master#egg=astroid-master-2.0 coverage<5.0 - isort mccabe pytest pytest-xdist -- cgit v1.2.1