From aed1760f9967454f356d9882d0c73b3de7ed9170 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20H=C3=B8xbro=20Hansen?= Date: Mon, 27 Feb 2023 13:36:40 +0100 Subject: [PATCH] Try with hdf5 pin (#1188) * Try with hdf5 pin * Make list * Expand pin to other os --- setup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.py b/setup.py index ac824528f..b54b05dfe 100644 --- a/setup.py +++ b/setup.py @@ -64,6 +64,9 @@ ] } +if sys.version_info < (3, 8): + extras_require['tests'] += ["hdf5 ==1.12.1"] # To be able to solve on mamba + extras_require['doc'] = extras_require['examples_extra'] + [ 'nbsite >=0.7.1', 'numpydoc',