summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuela Kuhn <36827019+manuelakuhn@users.noreply.github.com>2022-02-15 23:08:37 +0100
committerGitHub <noreply@github.com>2022-02-15 15:08:37 -0700
commitf70798727567a85c5586f0007a9dc803880e3050 (patch)
treecd1b3f083d4495f6285f5cce09a0e12d9122eb33
parent39c4af5f79fc66e249ec23033671cd036b0c8382 (diff)
downloadspack-f70798727567a85c5586f0007a9dc803880e3050.tar.gz
spack-f70798727567a85c5586f0007a9dc803880e3050.tar.bz2
spack-f70798727567a85c5586f0007a9dc803880e3050.tar.xz
spack-f70798727567a85c5586f0007a9dc803880e3050.zip
py-coverage: add 6.3.1 (#28946)
-rw-r--r--var/spack/repos/builtin/packages/py-coverage/package.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/py-coverage/package.py b/var/spack/repos/builtin/packages/py-coverage/package.py
index a7522ba627..b73b137628 100644
--- a/var/spack/repos/builtin/packages/py-coverage/package.py
+++ b/var/spack/repos/builtin/packages/py-coverage/package.py
@@ -9,9 +9,10 @@ from spack import *
class PyCoverage(PythonPackage):
""" Testing coverage checker for python """
- homepage = "https://nedbatchelder.com/code/coverage/"
+ homepage = "https://github.com/nedbat/coveragepy"
pypi = "coverage/coverage-4.5.4.tar.gz"
+ version('6.3.1', sha256='6c3f6158b02ac403868eea390930ae64e9a9a2a5bbfafefbb920d29258d9f2f8')
version('6.1.2', sha256='d9a635114b88c0ab462e0355472d00a180a5fbfd8511e7f18e4ac32652e7d972')
version('5.5', sha256='ebe78fe9a0e874362175b02371bdfbee64d8edc42a044253ddf4ee7d3c15212c')
version('5.3', sha256='280baa8ec489c4f542f8940f9c4c2181f0306a8ee1a54eceba071a449fb870a0')
@@ -23,9 +24,10 @@ class PyCoverage(PythonPackage):
variant('toml', default=False, description='Enable pyproject.toml support')
- depends_on('python@2.6:2.8,3.3:', type=('build', 'run'))
- depends_on('python@2.7:2.8,3.5:', when='@5:', type=('build', 'run'))
+ depends_on('python@3.7:', when='@6.3:', type=('build', 'run'))
depends_on('python@3.6:', when='@6:', type=('build', 'run'))
+ depends_on('python@2.7:2.8,3.5:', when='@5:', type=('build', 'run'))
+ depends_on('python@2.6:2.8,3.3:', type=('build', 'run'))
depends_on('py-setuptools', type=('build', 'run'))
depends_on('py-tomli', when='@6: +toml', type=('build', 'run'))
depends_on('py-toml', when='@:5 +toml', type=('build', 'run'))