summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authoriarspider <iarspider@gmail.com>2021-11-28 18:07:53 +0100
committerGitHub <noreply@github.com>2021-11-28 11:07:53 -0600
commit8ff81d43623a5065296d3df1715278488dcc4fcb (patch)
tree36cbc549cacb9f87ca5df6e5eb1c61daba7924a9 /var
parent1b71ceb384e825755232b9904efb9e089363cbfc (diff)
downloadspack-8ff81d43623a5065296d3df1715278488dcc4fcb.tar.gz
spack-8ff81d43623a5065296d3df1715278488dcc4fcb.tar.bz2
spack-8ff81d43623a5065296d3df1715278488dcc4fcb.tar.xz
spack-8ff81d43623a5065296d3df1715278488dcc4fcb.zip
Fix py-astroid recipe (#27670)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-astroid/package.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/py-astroid/package.py b/var/spack/repos/builtin/packages/py-astroid/package.py
index e9fc469674..9d691f0783 100644
--- a/var/spack/repos/builtin/packages/py-astroid/package.py
+++ b/var/spack/repos/builtin/packages/py-astroid/package.py
@@ -39,12 +39,12 @@ class PyAstroid(PythonPackage):
depends_on('py-lazy-object-proxy', type=('build', 'run'))
# Starting with astroid 2.3.1, astroid's dependencies were restricted
# to a given minor version, c.f. commit e1b4e11.
- depends_on('py-lazy-object-proxy@1.4.0:1.4', when='@2.3.1:', type=('build', 'run'))
+ depends_on('py-lazy-object-proxy@1.4.0:1.4', when='@2.3.1:2.7.2', type=('build', 'run'))
depends_on('py-lazy-object-proxy@1.4.0:', when='@2.7.3:', type=('build', 'run'))
depends_on('py-six', type=('build', 'run'), when='@:2.7.2')
depends_on('py-six@1.12:1', when='@2.3.3:2.7.2', type=('build', 'run'))
depends_on('py-wrapt', when='@:2.2', type=('build', 'run'))
- depends_on('py-wrapt@1.11:1.12', when='@2.3.3:', type=('build', 'run'))
+ depends_on('py-wrapt@1.11:1.12', when='@2.3.3:2.8.2', type=('build', 'run'))
depends_on('py-wrapt@1.11:1.13', when='@2.8.3:', type=('build', 'run'))
depends_on('py-enum34@1.1.3:', when='^python@:3.3', type=('build', 'run'))
depends_on('py-singledispatch', when='^python@:3.3', type=('build', 'run'))