summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorEthan Stam <33101855+EthanS94@users.noreply.github.com>2022-04-21 21:34:26 -0600
committerGitHub <noreply@github.com>2022-04-21 21:34:26 -0600
commitb00983439fc3f11365664853d80cb7f497fd88a6 (patch)
treeb6da1bd0c0baca580d93b680b3a8e355a55ab381 /var
parent5fe4ac2b059485e92296b03f54afc4f37787f0aa (diff)
downloadspack-b00983439fc3f11365664853d80cb7f497fd88a6.tar.gz
spack-b00983439fc3f11365664853d80cb7f497fd88a6.tar.bz2
spack-b00983439fc3f11365664853d80cb7f497fd88a6.tar.xz
spack-b00983439fc3f11365664853d80cb7f497fd88a6.zip
py-cinemasci: new version 1.7.0 (#30193)
* py-cinemasci: new version 1.7.0 * remove preferred version * add py-pyyaml dependency
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-cinemasci/package.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/py-cinemasci/package.py b/var/spack/repos/builtin/packages/py-cinemasci/package.py
index bf5565d280..e0cd6e4d03 100644
--- a/var/spack/repos/builtin/packages/py-cinemasci/package.py
+++ b/var/spack/repos/builtin/packages/py-cinemasci/package.py
@@ -11,12 +11,13 @@ class PyCinemasci(PythonPackage):
databases"""
homepage = "https://github.com/cinemascience"
- pypi = "cinemasci/cinemasci-1.3.tar.gz"
+ pypi = "cinemasci/cinemasci-1.7.0.tar.gz"
tags = ['e4s']
maintainers = ['EthanS94']
+ version('1.7.0', sha256='70e1fa494bcbefdbd9e8859cdf1b01163a94ecffcdfa3da1011e4ef2fcee6169')
version('1.3', sha256='c024ca9791de9d78e5dad3fd11e8f87d8bc1afa5830f2697d7ec4116a5d23c20')
variant('mpi', default=False, description='Enable MPI')
@@ -29,5 +30,9 @@ class PyCinemasci(PythonPackage):
depends_on('py-h5py+mpi', when='+mpi', type=('build', 'run'))
depends_on('py-ipywidgets', type=('build', 'run'))
depends_on('py-jupyterlab', type=('build', 'run'))
+ depends_on('py-matplotlib', type=('build', 'run'), when='@1.7.0:')
depends_on('py-pandas', type=('build', 'run'))
+ depends_on('py-pyyaml', type=('build', 'run'), when='@1.7.0:')
+ depends_on('py-scikit-image', type=('build', 'run'), when='@1.7.0:')
+ depends_on('py-scipy', type=('build', 'run'), when='@1.7.0:')
depends_on('py-setuptools', type=('build'))