Skip to content

Commit 3d3d8d0

Browse files
committed
tidying for v3.16.3
1 parent 9e29106 commit 3d3d8d0

30 files changed

+87
-86
lines changed

Changelog.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
version NEXTVERSION
2-
-------------------
1+
version 3.16.3
2+
--------------
33

4-
**2024-12-??**
4+
**2025-01-28**
55

66
* Allow ``'nearest_dtos'`` 2-d regridding to work with discrete
77
sampling geometry source grids

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,8 @@ The `cf` package uses
8484
[Dask](https://ncas-cms.github.io/cf-python/performance.html) for all
8585
of its array manipulation and can:
8686

87-
* read field constructs from netCDF, CDL, PP and UM datasets,
87+
* read field constructs from netCDF, CDL, PP and UM datasets with a
88+
choice of netCDF backends,and in local, http, and s3 locations,
8889
* create new field constructs in memory,
8990
* write and append field and domain constructs to netCDF datasets on disk,
9091
* read, create, and manipulate UGRID mesh topologies,

cf/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@
8181
"""
8282

8383
__Conventions__ = "CF-1.11"
84-
__date__ = "2024-??-??"
85-
__version__ = "3.17.0"
84+
__date__ = "2025-01-28"
85+
__version__ = "3.16.3"
8686

8787
_requires = (
8888
"numpy",

cf/cfimplementation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def initialise_CFANetCDF4Array(self, **kwargs):
133133
def initialise_CFAH5netcdfArray(self, **kwargs):
134134
"""Return a `CFAH5netcdfArray` instance.
135135
136-
.. versionadded:: NEXTVERSION
136+
.. versionadded:: 1.11.2.0
137137
138138
:Parameters:
139139

cf/data/array/cfah5netcdfarray.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
class CFAH5netcdfArray(CFAMixin, H5netcdfArray):
66
"""A CFA-netCDF array accessed with `h5netcdf`
77
8-
.. versionadded:: NEXTVERSION
8+
.. versionadded:: 1.11.2.0
99
1010
"""

cf/data/array/cfanetcdf4array.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
class CFANetCDF4Array(CFAMixin, NetCDF4Array):
66
"""A CFA-netCDF array accessed with `netCDF4`.
77
8-
.. versionadded:: NEXTVERSION
8+
.. versionadded:: 1.11.2.0
99
1010
"""

cf/data/array/fullarray.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,18 +41,18 @@ def __init__(
4141
4242
{{init attributes: `dict` or `None`, optional}}
4343
44-
.. versionadded:: NEXTVERSION
44+
.. versionadded:: 1.11.2.0
4545
4646
{{init source: optional}}
4747
4848
{{init copy: `bool`, optional}}
4949
5050
units: `str` or `None`, optional
51-
Deprecated at version NEXTVERSION. Use the
51+
Deprecated at version 1.11.2.0. Use the
5252
*attributes* parameter instead.
5353
5454
calendar: `str` or `None`, optional
55-
Deprecated at version NEXTVERSION. Use the
55+
Deprecated at version 1.11.2.0. Use the
5656
*attributes* parameter instead.
5757
5858
"""
@@ -123,7 +123,7 @@ def __str__(self):
123123
def _get_array(self, index=None):
124124
"""Returns the full array.
125125
126-
.. versionadded:: NEXTVERSION
126+
.. versionadded:: 1.11.2.0
127127
128128
.. seealso:: `__array__`, `index`
129129
@@ -158,7 +158,7 @@ def _get_array(self, index=None):
158158
def array(self):
159159
"""Return an independent numpy array containing the data.
160160
161-
.. versionadded:: NEXTVERSION
161+
.. versionadded:: 1.11.2.0
162162
163163
:Returns:
164164

cf/data/array/h5netcdfarray.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ class H5netcdfArray(
1818
An active storage reduction may be enabled with the `actify`
1919
method. See `cf.data.collapse.Collapse` for details.
2020
21-
.. versionadded:: NEXTVERSION
21+
.. versionadded:: 1.11.2.0
2222
2323
"""

cf/data/array/mixin/activestoragemixin.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
class ActiveStorageMixin:
22
"""Mixin class for enabling active storage operations.
33
4-
.. versionadded:: NEXTVERSION
4+
.. versionadded:: 1.11.2.0
55
66
"""
77

@@ -12,7 +12,7 @@ def active_storage(self):
1212
Currently, active storage operations are allowed unless the
1313
data are numerically packed.
1414
15-
.. versionadded:: NEXTVERSION
15+
.. versionadded:: 1.11.2.0
1616
1717
:Returns:
1818

cf/data/array/mixin/arraymixin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def _meta(self):
2727
the actual metadata from the values. It does not force the
2828
output to have the structure or dtype of the specified meta.
2929
30-
.. versionadded:: NEXTVERSION
30+
.. versionadded:: 1.11.2.0
3131
3232
.. seealso:: `dask.utils.meta_from_array`
3333

0 commit comments

Comments
 (0)