summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Johnson <glenn-johnson@uiowa.edu>2022-03-21 12:03:12 -0500
committerGitHub <noreply@github.com>2022-03-21 11:03:12 -0600
commit2f3a31cef6f0890fcd4614e41b40cb34f583cae4 (patch)
treea9ba224ccf3ef03f2c739a1f7400e4ac3d303e0a
parentfa554d763e7c350a08925fe5632922315108e934 (diff)
downloadspack-2f3a31cef6f0890fcd4614e41b40cb34f583cae4.tar.gz
spack-2f3a31cef6f0890fcd4614e41b40cb34f583cae4.tar.bz2
spack-2f3a31cef6f0890fcd4614e41b40cb34f583cae4.tar.xz
spack-2f3a31cef6f0890fcd4614e41b40cb34f583cae4.zip
py-pyvcf: constrain py-setuptools to 0.57 (#29610)
This package can not use setuptools newer than 0.57 due to needing features removed in later versions of setuptools.
-rw-r--r--var/spack/repos/builtin/packages/py-pyvcf/package.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/py-pyvcf/package.py b/var/spack/repos/builtin/packages/py-pyvcf/package.py
index 2b51be510f..a07e781153 100644
--- a/var/spack/repos/builtin/packages/py-pyvcf/package.py
+++ b/var/spack/repos/builtin/packages/py-pyvcf/package.py
@@ -15,7 +15,7 @@ class PyPyvcf(PythonPackage):
version('0.6.8', sha256='e9d872513d179d229ab61da47a33f42726e9613784d1cb2bac3f8e2642f6f9d9')
version('0.6.0', sha256='d9ec3bbedb64fa35c2648a9c41fdefaedd3912ff597a436e073d27aeccf5de7c')
- depends_on('py-setuptools', type='build')
+ depends_on('py-setuptools@:57', type='build')
depends_on('py-argparse', when='^python@:2.6,3.0:3.1', type=('build', 'run'))
depends_on('py-counter', when='^python@:2.6', type=('build', 'run'))
depends_on('py-ordereddict', when='^python@:2.6', type=('build', 'run'))