From 265e5367a875682e4a29676b9c8b9fa02016428f Mon Sep 17 00:00:00 2001 From: Daniel Weindl Date: Tue, 14 Oct 2025 15:49:55 +0200 Subject: [PATCH 1/2] Fix failing macos tests - `RuntimeError: Not a datatype (not a datatype)` Require `h5py!=3.15`. --- python/sdist/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/sdist/pyproject.toml b/python/sdist/pyproject.toml index 76d62a8853..ca7b1e17c7 100644 --- a/python/sdist/pyproject.toml +++ b/python/sdist/pyproject.toml @@ -63,7 +63,7 @@ classifiers = [ petab = ["petab>=0.4.0"] pysb = ["pysb>=1.13.1"] test = [ - "h5py", + "h5py!=3.15; platform_system=='Darwin'", "pytest", "pytest-cov", # v16.0: https://github.com/pytest-dev/pytest-rerunfailures/issues/302 From 123f517006b533a1e6b21279d4c6e32073cee6b7 Mon Sep 17 00:00:00 2001 From: Daniel Weindl Date: Tue, 14 Oct 2025 16:05:15 +0200 Subject: [PATCH 2/2] all platforms --- python/sdist/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/sdist/pyproject.toml b/python/sdist/pyproject.toml index ca7b1e17c7..1063708020 100644 --- a/python/sdist/pyproject.toml +++ b/python/sdist/pyproject.toml @@ -63,7 +63,7 @@ classifiers = [ petab = ["petab>=0.4.0"] pysb = ["pysb>=1.13.1"] test = [ - "h5py!=3.15; platform_system=='Darwin'", + "h5py!=3.15", "pytest", "pytest-cov", # v16.0: https://github.com/pytest-dev/pytest-rerunfailures/issues/302