summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorClaire Guilbaud <34576189+Bidibulke@users.noreply.github.com>2021-05-07 16:12:30 +0200
committerGitHub <noreply@github.com>2021-05-07 09:12:30 -0500
commitd82a0c6799878be5a09242be8af9e5acbdc285cf (patch)
tree55dd2cdf694ed0c48a1f7eb6603227d321de9f72 /var
parent7c6f65d36ba689fbf66a051dc79950c6378fd17c (diff)
downloadspack-d82a0c6799878be5a09242be8af9e5acbdc285cf.tar.gz
spack-d82a0c6799878be5a09242be8af9e5acbdc285cf.tar.bz2
spack-d82a0c6799878be5a09242be8af9e5acbdc285cf.tar.xz
spack-d82a0c6799878be5a09242be8af9e5acbdc285cf.zip
Update py-hieroglyph (#23279)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-hieroglyph/package.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/py-hieroglyph/package.py b/var/spack/repos/builtin/packages/py-hieroglyph/package.py
index 454e72fd65..997e0ddf34 100644
--- a/var/spack/repos/builtin/packages/py-hieroglyph/package.py
+++ b/var/spack/repos/builtin/packages/py-hieroglyph/package.py
@@ -14,9 +14,11 @@ class PyHieroglyph(PythonPackage):
homepage = "https://github.com/nyergler/hieroglyph"
pypi = "hieroglyph/hieroglyph-1.0.0.tar.gz"
+ version('2.1.0', sha256='b4b5db13a9d387438e610c2ca1d81386ccd206944d9a9dd273f21874486cddaf')
version('1.0.0', sha256='8e137f0b1cd60c47b870011089790d3c8ddb74fcf409a75ddf2c7f2516ff337c')
- version('master')
- depends_on('py-setuptools')
- depends_on('py-sphinx@1.2:')
- depends_on('py-six')
+ depends_on('python@3:', when='@2:', type=('build', 'run'))
+ depends_on('py-setuptools', type=('build', 'run'))
+ depends_on('py-sphinx@1.2:', when='@1.0.0:1.9.999', type=('build', 'run'))
+ depends_on('py-sphinx@2.0:', when='@2.0.0:', type=('build', 'run'))
+ depends_on('py-six', when='@1.0.0:1.9.999', type=('build', 'run'))