diff options
author | Erik Schnetter <schnetter@gmail.com> | 2021-07-26 04:28:02 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-26 10:28:02 +0200 |
commit | cef3a2a6ee1be3f78e9493cc7ac74ee620c811ae (patch) | |
tree | ed426d80ff3fdb8e4650f6e6d773f82f1456ffaa | |
parent | c912911d0e932b55a79bd77696e8f968c8a194d9 (diff) | |
download | spack-cef3a2a6ee1be3f78e9493cc7ac74ee620c811ae.tar.gz spack-cef3a2a6ee1be3f78e9493cc7ac74ee620c811ae.tar.bz2 spack-cef3a2a6ee1be3f78e9493cc7ac74ee620c811ae.tar.xz spack-cef3a2a6ee1be3f78e9493cc7ac74ee620c811ae.zip |
asdf-cxx: require a particular version of yaml-cpp (#24988)
-rw-r--r-- | var/spack/repos/builtin/packages/asdf-cxx/package.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/asdf-cxx/package.py b/var/spack/repos/builtin/packages/asdf-cxx/package.py index ffb871ad32..742d939666 100644 --- a/var/spack/repos/builtin/packages/asdf-cxx/package.py +++ b/var/spack/repos/builtin/packages/asdf-cxx/package.py @@ -45,5 +45,6 @@ class AsdfCxx(CMakePackage): # An error in the cmake script requires swig all the time, not only when # Python bindings are used depends_on('swig @3.0.0:3.999.999', type='build') - depends_on('yaml-cpp') + # Neither earlier nor later versions of yaml-cpp work + depends_on('yaml-cpp @0.6.3') depends_on('zlib') |