summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSinan <sbulutw@gmail.com>2023-09-21 04:43:44 -0700
committerGitHub <noreply@github.com>2023-09-21 06:43:44 -0500
commitbd8d121a2317d1a4963a56653e86062f6570f0ee (patch)
tree1fd7fb1a2bd0419e437feddabec0623edc550be1
parent2bd487988f3e9aba4d18ee16dc894b0bc60121a4 (diff)
downloadspack-bd8d121a2317d1a4963a56653e86062f6570f0ee.tar.gz
spack-bd8d121a2317d1a4963a56653e86062f6570f0ee.tar.bz2
spack-bd8d121a2317d1a4963a56653e86062f6570f0ee.tar.xz
spack-bd8d121a2317d1a4963a56653e86062f6570f0ee.zip
package:pylint fix isort dependency versions (#40094)
Co-authored-by: sbulut <sbulut@3vgeomatics.com>
-rw-r--r--var/spack/repos/builtin/packages/py-pylint/package.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/py-pylint/package.py b/var/spack/repos/builtin/packages/py-pylint/package.py
index 1c7111b99b..e6e5d3ca70 100644
--- a/var/spack/repos/builtin/packages/py-pylint/package.py
+++ b/var/spack/repos/builtin/packages/py-pylint/package.py
@@ -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"))