package:pylint fix isort dependency versions (#40094)

Co-authored-by: sbulut <sbulut@3vgeomatics.com>
This commit is contained in:
Sinan 2023-09-21 04:43:44 -07:00 committed by GitHub
parent 2bd487988f
commit bd8d121a23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,7 +58,8 @@ class PyPylint(PythonPackage):
depends_on("py-astroid@2.12.4:2.13", when="@2.15", type=("build", "run"))
depends_on("py-astroid@2.14.2:2.15", when="@2.16:", type=("build", "run"))
depends_on("py-isort@4.2.5:", type=("build", "run"))
depends_on("py-isort@4.2.5:5", when="@2.3.1:", type=("build", "run"))
depends_on("py-isort@4.2.5:4", when="@2.3.1:2.5", type=("build", "run"))
depends_on("py-isort@4.2.5:5", when="@2.6:", type=("build", "run"))
depends_on("py-mccabe", type=("build", "run"))
depends_on("py-mccabe@0.6.0:0.6", when="@2.3.1:2.11", type=("build", "run"))
depends_on("py-mccabe@0.6.0:0.7", when="@2.13:", type=("build", "run"))