Skip to content

Commit d800005

Browse files
committed
h5py>=3.12.0
1 parent 09cf4c7 commit d800005

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

Changelog.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ version 3.17.0
88
* New keyword parameter to `cf.Field.compute_vertical_coordinates`:
99
``key`` (https://github.com/NCAS-CMS/cf-python/issues/802)
1010
* Changed dependency: ``1.12.0.0<=cfdm<1.12.1.0``
11+
* Changed dependency: ``h5py>=3.12.0``
1112

1213
----
1314

cf/functions.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2754,6 +2754,10 @@ def dirname(path, normalise=False, uri=None, isdir=False, sep=False):
27542754

27552755
dirname.__doc__ = cfdm.dirname.__doc__.replace("cfdm.", "cf.")
27562756

2757+
from functools import partial
2758+
dirname2 = partial(cfdm.dirname)
2759+
dirname2.__doc__ = cfdm.dirname.__doc__.replace("cfdm.", "cf.")
2760+
27572761

27582762
def pathjoin(path1, path2):
27592763
"""Join two file path components intelligently.

docs/source/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ Required
206206
* `h5netcdf <https://pypi.org/project/h5netcdf>`_, version 1.3.0
207207
newer.
208208

209-
* `h5py <https://pypi.org/project/h5py>`_, version 3.10.0 or newer.
209+
* `h5py <https://pypi.org/project/h5py>`_, version 3.12.0 or newer.
210210

211211
* `s3fs <https://pypi.org/project/s3fs>`_, version 2024.6.0 or newer.
212212

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ dask>=2024.6.0,<=2024.7.1
88
packaging>=20.0
99
scipy>=1.10.0
1010
h5netcdf>=1.3.0
11-
h5py>=3.10.0
11+
h5py>=3.12.0
1212
s3fs>=2024.6.0

0 commit comments

Comments
 (0)