summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoriarspider <iarspider@gmail.com>2021-11-25 00:04:53 +0100
committerGitHub <noreply@github.com>2021-11-24 16:04:53 -0700
commit6fa0feb7de3e9926b0db31ee24a366c03ec1c746 (patch)
tree8996fce44c7e0deb8ea7964353a382c9f9c4af93
parent0db93a5deaceb4a692c79d3496a042691f832070 (diff)
downloadspack-6fa0feb7de3e9926b0db31ee24a366c03ec1c746.tar.gz
spack-6fa0feb7de3e9926b0db31ee24a366c03ec1c746.tar.bz2
spack-6fa0feb7de3e9926b0db31ee24a366c03ec1c746.tar.xz
spack-6fa0feb7de3e9926b0db31ee24a366c03ec1c746.zip
New version: py-rich 10.14.0 (redo of #27580) (#27646)
-rw-r--r--var/spack/repos/builtin/packages/py-rich/package.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/py-rich/package.py b/var/spack/repos/builtin/packages/py-rich/package.py
index ffb6806f36..37f26862a5 100644
--- a/var/spack/repos/builtin/packages/py-rich/package.py
+++ b/var/spack/repos/builtin/packages/py-rich/package.py
@@ -14,6 +14,7 @@ class PyRich(PythonPackage):
homepage = "https://github.com/willmcgugan/rich"
pypi = "rich/rich-9.4.0.tar.gz"
+ version('10.14.0', sha256='8bfe4546d56b4131298d3a9e571a0742de342f1593770bd0d4707299f772a0af')
version('10.0.0', sha256='4674bd3056a72bb282ad581e3f8092dc110cdcc456b5ba76e34965cb85a69724')
version('9.9.0', sha256='0bd8f42c3a03b7ef5e311d5e37f47bea9d268f541981c169072be5869c007957')
version('9.8.2', sha256='c0d5903b463f015b254d6f52da82af3821d266fe516ae05fdc266e6abba5c3a8')
@@ -28,8 +29,10 @@ class PyRich(PythonPackage):
version('9.4.0', sha256='bde23a1761373fed2802502ff98292c5d735a5389ed96f4fe1be5fb4c2cde8ea')
depends_on('python@3.6:', type=('build', 'run'))
+ depends_on('python@3.6.2:3', type=('build', 'run'), when='@10.14.0:')
depends_on('py-setuptools', type='build')
- depends_on('py-typing-extensions@3.7.4:3', type=('build', 'run'))
+ depends_on('py-typing-extensions@3.7.4:4', type=('build', 'run'), when='@10.14.0: ^python@:3.7')
+ depends_on('py-typing-extensions@3.7.4:3', type=('build', 'run'), when='@:10.0')
depends_on('py-dataclasses@0.7:0.8', when='^python@:3.6', type=('build', 'run'))
depends_on('py-pygments@2.6:2', type=('build', 'run'))
depends_on('py-commonmark@0.9.0:0.9', type=('build', 'run'))