summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin.mock
diff options
context:
space:
mode:
authorPeter Scheibel <scheibel1@llnl.gov>2023-05-16 06:45:11 -0700
committerGitHub <noreply@github.com>2023-05-16 15:45:11 +0200
commit7bc5b26c520e19e75c3edf2ed3aaaaa135038734 (patch)
tree8b0f763b0faca9541b0888e723d213c5d9e96816 /var/spack/repos/builtin.mock
parenta0e7ca94b2c0a7e5c56b2478aedced12921fb633 (diff)
downloadspack-7bc5b26c520e19e75c3edf2ed3aaaaa135038734.tar.gz
spack-7bc5b26c520e19e75c3edf2ed3aaaaa135038734.tar.bz2
spack-7bc5b26c520e19e75c3edf2ed3aaaaa135038734.tar.xz
spack-7bc5b26c520e19e75c3edf2ed3aaaaa135038734.zip
Requirements and preferences should not define (non-git) versions (#37687)
Ensure that requirements `packages:*:require:@x` and preferences `packages:*:version:[x]` fail concretization when no version defined in the package satisfies `x`. This always holds except for git versions -- they are defined on the fly.
Diffstat (limited to 'var/spack/repos/builtin.mock')
-rw-r--r--var/spack/repos/builtin.mock/packages/python/package.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/var/spack/repos/builtin.mock/packages/python/package.py b/var/spack/repos/builtin.mock/packages/python/package.py
index 0e440f33cb..4ba957e050 100644
--- a/var/spack/repos/builtin.mock/packages/python/package.py
+++ b/var/spack/repos/builtin.mock/packages/python/package.py
@@ -14,6 +14,7 @@ class Python(Package):
extendable = True
+ version("3.7.1", md5="aaabbbcccdddeeefffaaabbbcccddd12")
version("3.5.1", md5="be78e48cdfc1a7ad90efff146dce6cfe")
version("3.5.0", md5="a56c0c0b45d75a0ec9c6dee933c41c36")
version("2.7.11", md5="6b6076ec9e93f05dd63e47eb9c15728b", preferred=True)