summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAxel Huebl <axel.huebl@plasma.ninja>2018-09-06 10:41:45 +0200
committerMassimiliano Culpo <massimiliano.culpo@gmail.com>2018-09-06 10:41:45 +0200
commit901d76ef534140a578998e08bbe6f73c0e755b13 (patch)
tree5374d7fdd5ad8f3e0a0d6d5153f48802107e3d2d /var
parentf6fff8f3431144b4cccf8ab644cac711d9840650 (diff)
downloadspack-901d76ef534140a578998e08bbe6f73c0e755b13.tar.gz
spack-901d76ef534140a578998e08bbe6f73c0e755b13.tar.bz2
spack-901d76ef534140a578998e08bbe6f73c0e755b13.tar.xz
spack-901d76ef534140a578998e08bbe6f73c0e755b13.zip
openPMD-api: ^py-numpy@1.15+ (#9178)
Due to an internal bug regarding the handling of scalars (ndim must be 0) in numpy prior to 1.15.0, openPMD-api will require the latest numpy 1.15+. Since there is a small regression with datetime pickling in 1.15.0 from the required fix and spack only packages 1.15.1 currently, we depend on 1.15.1 in the recipe.
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/openpmd-api/package.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/openpmd-api/package.py b/var/spack/repos/builtin/packages/openpmd-api/package.py
index 420465d1d1..cfb77bfcf4 100644
--- a/var/spack/repos/builtin/packages/openpmd-api/package.py
+++ b/var/spack/repos/builtin/packages/openpmd-api/package.py
@@ -63,7 +63,7 @@ class OpenpmdApi(CMakePackage):
depends_on('adios2@2.1.0: +mpi', when='+mpi +adios2')
# ideally we want 2.3.0+ for full C++11 CT function signature support
depends_on('py-pybind11@2.2.3:', when='+python')
- depends_on('py-numpy', when='+python', type=['test', 'run'])
+ depends_on('py-numpy@1.15.1:', when='+python', type=['test', 'run'])
extends('python', when='+python')