Skip to content

Commit

Permalink
tidying for v1.11.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhassell committed Jan 28, 2025
1 parent 170ca84 commit 0224edb
Show file tree
Hide file tree
Showing 30 changed files with 259 additions and 259 deletions.
6 changes: 3 additions & 3 deletions Changelog.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Version NEXTVERSION
-------------------
Version 1.11.2.0
----------------

**2024-12-??**
**2025-01-28**

* Introduction of `dask` for all data manipulations
https://github.com/NCAS-CMS/cfdm/issues/317)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ inspecting it:
The ``cfdm`` package can:

* read field and domain constructs from netCDF and CDL datasets with a
choice of netCDF backends,
choice of netCDF backends,and in local, http, and s3 locations,
* be fully flexible with respect to HDF5 chunking,
* create new field and domain constructs in memory,
* write and append field and domain constructs to netCDF datasets on disk,
Expand Down
6 changes: 3 additions & 3 deletions cfdm/cfdmimplementation.py
Original file line number Diff line number Diff line change
Expand Up @@ -1172,7 +1172,7 @@ def nc_set_group_attributes(self, field, attributes):
def nc_set_hdf5_chunksizes(self, data, chunksizes):
"""Set the HDF5 chunking strategy for the data.
..versionadded:: (cfdm) NEXTVERSION
..versionadded:: (cfdm) 1.11.2.0
:Parameters:
Expand Down Expand Up @@ -2316,7 +2316,7 @@ def initialise_NetCDF4Array(self, **kwargs):
kwargs: optional
Initialisation parameters to pass to the new instance.
.. versionadded:: (cfdm) NEXTVERSION
.. versionadded:: (cfdm) 1.11.2.0
:Returns:
Expand All @@ -2329,7 +2329,7 @@ def initialise_NetCDF4Array(self, **kwargs):
def initialise_H5netcdfArray(self, **kwargs):
"""Return a `H5netcdfArray` instance.
.. versionadded:: (cfdm) NEXTVERSION
.. versionadded:: (cfdm) 1.11.2.0
:Parameters:
Expand Down
2 changes: 1 addition & 1 deletion cfdm/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"""

__date__ = "2024-??-??"
__date__ = "2025-01-28"
__cf_version__ = "1.11"
__version__ = "1.11.2.0"

Expand Down
2 changes: 1 addition & 1 deletion cfdm/core/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def environment(display=True, paths=True):
Python: 3.11.4
packaging: 23.0
numpy: 1.25.2
cfdm.core: NEXTVERSION
cfdm.core: 1.11.2.0
"""
import numpy as np
Expand Down
2 changes: 1 addition & 1 deletion cfdm/data/creation.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
def to_dask(array, chunks, **from_array_options):
"""Create a `dask` array.
.. versionadded:: (cfdm) NEXTVERSION
.. versionadded:: (cfdm) 1.11.2.0
:Parameters:
Expand Down
10 changes: 5 additions & 5 deletions cfdm/data/dask_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
def cfdm_to_memory(a):
"""Return an in-memory version of *a*.
.. versionadded:: (cfdm) NEXTVERSION
.. versionadded:: (cfdm) 1.11.2.0
:Parameters:
Expand All @@ -34,7 +34,7 @@ def cfdm_to_memory(a):
def cfdm_filled(a, fill_value=None):
"""Replace masked elements with a fill value.
.. versionadded:: (cfdm) NEXTVERSION
.. versionadded:: (cfdm) 1.11.2.0
:Parameters:
Expand Down Expand Up @@ -68,7 +68,7 @@ def cfdm_harden_mask(a):
Has no effect if the array is not a masked array.
.. versionadded:: (cfdm) NEXTVERSION
.. versionadded:: (cfdm) 1.11.2.0
:Parameters:
Expand Down Expand Up @@ -98,7 +98,7 @@ def cfdm_soften_mask(a):
Has no effect if the array is not a masked array.
.. versionadded:: (cfdm) NEXTVERSION
.. versionadded:: (cfdm) 1.11.2.0
:Parameters:
Expand Down Expand Up @@ -144,7 +144,7 @@ def cfdm_where(array, condition, x, y, hardmask):
.. note:: This function sets the mask hardness of the output
array appropriately.
.. versionadded:: (cfdm) NEXTVERSION
.. versionadded:: (cfdm) 1.11.2.0
:Parameters:
Expand Down
Loading

0 comments on commit 0224edb

Please sign in to comment.