Skip to content

Commit

Permalink
don't use h5py 3.0.0 as there are breaking changes
Browse files Browse the repository at this point in the history
  • Loading branch information
cwiede committed Nov 5, 2020
1 parent 9515d56 commit 3845eb7
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 3845eb7

Please sign in to comment.