diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2019-07-29 18:12:37 -0500 |
---|---|---|
committer | Peter Scheibel <scheibel1@llnl.gov> | 2019-07-29 16:12:37 -0700 |
commit | b8b2fa226e1770aa8ba674e18524d1a4dc92e3bf (patch) | |
tree | d6b398dfef9c4a12c38e8ca76d95e48e21b05cd6 | |
parent | 6e9f51d1d2397e6d3c93807ce20a965bb3cdb8a4 (diff) | |
download | spack-b8b2fa226e1770aa8ba674e18524d1a4dc92e3bf.tar.gz spack-b8b2fa226e1770aa8ba674e18524d1a4dc92e3bf.tar.bz2 spack-b8b2fa226e1770aa8ba674e18524d1a4dc92e3bf.tar.xz spack-b8b2fa226e1770aa8ba674e18524d1a4dc92e3bf.zip |
CMOR package: add version 3.4.0 (Python3-compatible) (#12076)
-rw-r--r-- | var/spack/repos/builtin/packages/cmor/package.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/cmor/package.py b/var/spack/repos/builtin/packages/cmor/package.py index 1a3a0910ec..864e57ffd3 100644 --- a/var/spack/repos/builtin/packages/cmor/package.py +++ b/var/spack/repos/builtin/packages/cmor/package.py @@ -13,8 +13,9 @@ class Cmor(AutotoolsPackage): standard model experiments.""" homepage = "http://cmor.llnl.gov" - url = "https://github.com/PCMDI/cmor/archive/3.1.2.tar.gz" + url = "https://github.com/PCMDI/cmor/archive/3.4.0.tar.gz" + version('3.4.0', sha256='e700a6d50f435e6ffdedf23bf6832b7d37fe21dc78815e1372f218d1d52bd2cb') version('3.3.0', 'cfdeeddab1aedb823e26ec38723bd67e') version('3.2.0', 'b48105105d4261012c19cd65e89ff7a6') version('3.1.2', '72f7227159c901e4bcf80d2c73a8ce77') @@ -28,7 +29,7 @@ class Cmor(AutotoolsPackage): depends_on('hdf5@:1.8.19') extends('python', when='+python') - depends_on('python@:2.8', when='+python') + depends_on('python@:2', when='@:3.3 +python') depends_on('py-numpy', type=('build', 'run'), when='+python') @run_before('configure') |