From 3845eb782759473d581b6814bfc751096655daf5 Mon Sep 17 00:00:00 2001 From: Christoph Wiedemann <62332054+cwiede@users.noreply.github.com> Date: Thu, 5 Nov 2020 10:25:00 +0100 Subject: [PATCH] don't use h5py 3.0.0 as there are breaking changes --- setup.py | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 0598153..dbcce1a 100644 --- a/setup.py +++ b/setup.py @@ -142,8 +142,15 @@ def get_option_dict(self, k): os.chdir(str(cwd)) setup(name='nexxT', - install_requires=["PySide2==5.14.2.3", "shiboken2==5.14.2.3", "jsonschema>=3.2.0", "h5py>=2.10.0", "setuptools>=41.0.0", - 'importlib-metadata >= 1.0 ; python_version < "3.8"', "pip-licenses"], + install_requires=[ + "PySide2==5.14.2.3", + "shiboken2==5.14.2.3", + "jsonschema>=3.2.0", + "h5py>=2.10.0,<3.0.0", + "setuptools>=41.0.0", + 'importlib-metadata >= 1.0 ; python_version < "3.8"', + "pip-licenses", + ], version=os.environ.get("NEXXT_VERSION", "0.0.0"), description='An extensible framework.', author='Christoph Wiedemann',