summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhealther <healther@users.noreply.github.com>2017-12-08 18:22:52 +0100
committerChristoph Junghans <christoph.junghans@gmail.com>2017-12-08 10:22:52 -0700
commit4c02e7e9f4e018f9a47aec9f604df21bfe1ab4fa (patch)
treeb990212775ce8bc3d46e8c6e23d903916722f91b
parentbb8e7ee023d678e68d1da3018bf6d1d3d36d55bd (diff)
downloadspack-4c02e7e9f4e018f9a47aec9f604df21bfe1ab4fa.tar.gz
spack-4c02e7e9f4e018f9a47aec9f604df21bfe1ab4fa.tar.bz2
spack-4c02e7e9f4e018f9a47aec9f604df21bfe1ab4fa.tar.xz
spack-4c02e7e9f4e018f9a47aec9f604df21bfe1ab4fa.zip
add restriction to py-setuptools dependency on py-flake8 (#6589)
-rw-r--r--var/spack/repos/builtin/packages/py-flake8/package.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/py-flake8/package.py b/var/spack/repos/builtin/packages/py-flake8/package.py
index c4926ae64f..43ebf00865 100644
--- a/var/spack/repos/builtin/packages/py-flake8/package.py
+++ b/var/spack/repos/builtin/packages/py-flake8/package.py
@@ -40,7 +40,7 @@ class PyFlake8(PythonPackage):
# Most Python packages only require py-setuptools as a build dependency.
# However, py-flake8 requires py-setuptools during runtime as well.
- depends_on('py-setuptools', type=('build', 'run'))
+ depends_on('py-setuptools@30:', type=('build', 'run'))
# pyflakes >= 0.8.1, != 1.2.0, != 1.2.1, != 1.2.2, < 1.3.0
depends_on('py-pyflakes@0.8.1:1.1.0,1.2.3:1.2.3', when='@3.0.4', type=('build', 'run'))