summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorliuyangzhuan <liuyangzhuan@gmail.com>2022-02-03 02:02:46 -0800
committerGitHub <noreply@github.com>2022-02-03 11:02:46 +0100
commit932408ac2bcd8c01c1e9df3b1d0d1f9b1f02a6b5 (patch)
treed0d671a2b3b19009b236270e3a886ae083d6cecf /var
parent5a640f9063979f91c9df5e79975b38ce7eafd358 (diff)
downloadspack-932408ac2bcd8c01c1e9df3b1d0d1f9b1f02a6b5.tar.gz
spack-932408ac2bcd8c01c1e9df3b1d0d1f9b1f02a6b5.tar.bz2
spack-932408ac2bcd8c01c1e9df3b1d0d1f9b1f02a6b5.tar.xz
spack-932408ac2bcd8c01c1e9df3b1d0d1f9b1f02a6b5.zip
gptune: add v2.1.0 (#28739)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/gptune/package.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/gptune/package.py b/var/spack/repos/builtin/packages/gptune/package.py
index 508857d347..0d49beef3f 100644
--- a/var/spack/repos/builtin/packages/gptune/package.py
+++ b/var/spack/repos/builtin/packages/gptune/package.py
@@ -13,24 +13,26 @@ class Gptune(CMakePackage):
Bayesian optimization methodologies."""
homepage = "https://gptune.lbl.gov/"
+ url = "https://github.com/gptune/GPTune/archive/refs/tags/2.1.0.tar.gz"
git = "https://github.com/gptune/GPTune.git"
maintainers = ['liuyangzhuan']
version('master', branch='master')
+ version('2.1.0', sha256='737e0a1d83f66531098beafa73dd479f12def576be83b1c7b8ea5f1615d60a53')
variant('superlu', default=False, description='Build the SuperLU_DIST example')
variant('hypre', default=False, description='Build the Hypre example')
variant('mpispawn', default=True, description='MPI spawning-based interface')
depends_on('mpi', type=('build', 'link', 'run'))
- depends_on('cmake@3.3:', type='build')
+ depends_on('cmake@3.17:', type='build')
depends_on('jq', type='run')
depends_on('blas', type='link')
depends_on('lapack', type='link')
depends_on('scalapack', type='link')
depends_on('py-setuptools', type='build')
depends_on('py-ipyparallel', type=('build', 'run'))
- depends_on('py-numpy', type=('build', 'run'))
+ depends_on('py-numpy@:1.21.5', type=('build', 'run'))
depends_on('py-pandas', type=('build', 'run'))
depends_on('py-joblib', type=('build', 'run'))
depends_on('py-scikit-learn', type=('build', 'run'))