summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/cntk/package.py
diff options
context:
space:
mode:
authorMassimiliano Culpo <massimiliano.culpo@gmail.com>2021-12-29 21:16:07 +0100
committerGitHub <noreply@github.com>2021-12-29 12:16:07 -0800
commitc2e1a12cdf44edd7f29e465bbdfdc511b97d9669 (patch)
tree2d24203ed88b5b99ba612e6a141abaed45952c50 /var/spack/repos/builtin/packages/cntk/package.py
parent27202b22402f1655c730fc167d4e659db82eab54 (diff)
downloadspack-c2e1a12cdf44edd7f29e465bbdfdc511b97d9669.tar.gz
spack-c2e1a12cdf44edd7f29e465bbdfdc511b97d9669.tar.bz2
spack-c2e1a12cdf44edd7f29e465bbdfdc511b97d9669.tar.xz
spack-c2e1a12cdf44edd7f29e465bbdfdc511b97d9669.zip
Ensure some version known to Spack can satisfy constraints in `depends_on` (#28131)
Add a new check to `spack audit` to scan and verify that version constraints may be satisfied Modifications: - [x] Add a new check to `spack audit` to scan and verify that version constraints may be satisfied by some version declared in the built-in repository - [x] Fix issues found by CI Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
Diffstat (limited to 'var/spack/repos/builtin/packages/cntk/package.py')
-rw-r--r--var/spack/repos/builtin/packages/cntk/package.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/cntk/package.py b/var/spack/repos/builtin/packages/cntk/package.py
index 64ebe95c02..36c06d3e12 100644
--- a/var/spack/repos/builtin/packages/cntk/package.py
+++ b/var/spack/repos/builtin/packages/cntk/package.py
@@ -32,7 +32,7 @@ class Cntk(Package):
depends_on('protobuf')
# CNTK depends on kaldi@c02e8.
# See https://github.com/Microsoft/CNTK/blob/master/Tools/docker/CNTK-CPUOnly-Image/Dockerfile#L105-L125
- depends_on('kaldi@c024e8', when='+kaldi')
+ depends_on('kaldi@2015-10-07', when='+kaldi')
depends_on('opencv', when='+opencv')
depends_on('cuda', when='+cuda')
depends_on('cub@1.4.1', when='+cuda')