Skip to content

Commit 4b87c22

Browse files
committed
UGRIDVER -> 3.16.0
1 parent 6c18b1e commit 4b87c22

16 files changed

+55
-55
lines changed

cf/aggregate.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1424,7 +1424,7 @@ def canonical_cell_methods(self, rtol=None, atol=None):
14241424
def has_cell(self, topology):
14251425
"""Whether a domain topology construct has a connectivity type.
14261426
1427-
.. versionadded:: UGRIDVER
1427+
.. versionadded:: 3.16.0
14281428
14291429
:Parameters:
14301430
@@ -1452,7 +1452,7 @@ def has_cell(self, topology):
14521452
def has_connectivity(self, connectivity):
14531453
"""Whether a cell connectivity construct has a connectivity type.
14541454
1455-
.. versionadded:: UGRIDVER
1455+
.. versionadded:: 3.16.0
14561456
14571457
:Parameters:
14581458
@@ -1480,7 +1480,7 @@ def has_connectivity(self, connectivity):
14801480
def has_measure(self, msr):
14811481
"""Whether a cell measure construct has a measure.
14821482
1483-
.. versionadded:: UGRIDVER
1483+
.. versionadded:: 3.16.0
14841484
14851485
:Parameters:
14861486
@@ -1508,7 +1508,7 @@ def has_measure(self, msr):
15081508
def has_units(self, construct):
15091509
"""Whether a construct has units.
15101510
1511-
.. versionadded:: UGRIDVER
1511+
.. versionadded:: 3.16.0
15121512
15131513
:Parameters:
15141514
@@ -1582,7 +1582,7 @@ def coord_has_identity_and_data(self, coord, axes=None):
15821582
def has_data(self, construct):
15831583
"""Whether a construct has data.
15841584
1585-
.. versionadded:: UGRIDVER
1585+
.. versionadded:: 3.16.0
15861586
15871587
:Parameters:
15881588
@@ -1649,7 +1649,7 @@ def coordinate_reference_signatures(self, refs):
16491649
def get_identity(self, construct, identity=None):
16501650
"""Return a construct's identity if it has one.
16511651
1652-
.. versionadded:: UGRIDVER
1652+
.. versionadded:: 3.16.0
16531653
16541654
:Parameters:
16551655

cf/cellconnectivity.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class CellConnectivity(mixin.PropertiesData, cfdm.CellConnectivity):
5555
5656
{{netCDF variable}}
5757
58-
.. versionadded:: UGRIDVER
58+
.. versionadded:: 3.16.0
5959
6060
"""
6161

@@ -65,7 +65,7 @@ def connectivity(self):
6565
6666
{{cell connectivity type}}
6767
68-
.. versionadded:: UGRIDVER
68+
.. versionadded:: 3.16.0
6969
7070
.. seealso:: `del_connectivity`, `get_connectivity`,
7171
`has_connectivity`, `set_connectivity`
@@ -100,7 +100,7 @@ def identity(
100100
* The netCDF variable name, preceded by ``'ncvar%'``.
101101
* The value of the *default* parameter.
102102
103-
.. versionadded:: UGRIDVER
103+
.. versionadded:: 3.16.0
104104
105105
.. seealso:: `id`, `identities`, `long_name`, `connectivity`,
106106
`nc_get_variable`, `standard_name`

cf/data/array/boundsfromnodesarray.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ class BoundsFromNodesArray(
1818
mapping from from each cell boundary vertex to its corresponding
1919
coordinate value.
2020
21-
.. versionadded:: UGRIDVER
21+
.. versionadded:: 3.16.0
2222
2323
"""

cf/data/array/cellconnectivityarray.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ class CellConnectivityArray(
2020
UGRID variable. The extra column, in the first position, contains
2121
the identifier for each cell.
2222
23-
.. versionadded:: UGRIDVER
23+
.. versionadded:: 3.16.0
2424
2525
"""

cf/data/array/mixin/compressedarraymixin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def _lock_file_read(self, array):
5353
def to_dask_array(self, chunks="auto"):
5454
"""Convert the data to a `dask` array.
5555
56-
.. versionadded:: UGRIDVER
56+
.. versionadded:: 3.16.0
5757
5858
:Parameters:
5959

cf/data/array/pointtopologyarray.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ class PointTopologyArray(
1616
UGRID "edge_node_connectivity" or UGRID "face_node_connectivity"
1717
array.
1818
19-
.. versionadded:: UGRIDVER
19+
.. versionadded:: 3.16.0
2020
2121
"""

cf/data/collapse/dask_collapse.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def sum_weights_chunk(
109109
If True, the default, then check that all weights are
110110
positive.
111111
112-
.. versionadded:: UGRIDVER
112+
.. versionadded:: 3.16.0
113113
114114
:Returns:
115115
@@ -246,7 +246,7 @@ def cf_mean_chunk(
246246
check_weights: `bool`, optional
247247
If True then check that all weights are positive.
248248
249-
.. versionadded:: UGRIDVER
249+
.. versionadded:: 3.16.0
250250
251251
See `dask.array.reductions` for details of the other
252252
parameters.
@@ -933,7 +933,7 @@ def cf_sum_chunk(
933933
If True, the default, then check that all weights are
934934
positive.
935935
936-
.. versionadded:: UGRIDVER
936+
.. versionadded:: 3.16.0
937937
938938
See `dask.array.reductions` for details of the other
939939
parameters.

cf/data/data.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ def __init__(
272272
Mask *array* where it is equal to *mask_value*, using
273273
numerically tolerant floating point equality.
274274
275-
.. versionadded:: UGRIDVER
275+
.. versionadded:: 3.16.0
276276
277277
{{init source: optional}}
278278
@@ -7388,7 +7388,7 @@ def arctan2(cls, x1, x2):
73887388
Note that ``+0`` and ``-0`` are distinct floating point
73897389
numbers, as are ``+inf`` and ``-inf``.
73907390
7391-
.. versionadded:: UGRIDVER
7391+
.. versionadded:: 3.16.0
73927392
73937393
.. seealso:: `arctan`, `tan`
73947394
@@ -7889,7 +7889,7 @@ def sparse_array(self):
78897889
computed. The returned sparse array is a deep copy of that
78907890
returned by created `compute`.
78917891
7892-
.. versionadded:: UGRIDVER
7892+
.. versionadded:: 3.16.0
78937893
78947894
.. seealso:: `array`
78957895
@@ -10029,7 +10029,7 @@ def masked_values(self, value, rtol=None, atol=None, inplace=False):
1002910029
Masks the data where elements are approximately equal to the
1003010030
given value. For integer types, exact equality is used.
1003110031
10032-
.. versionadded:: UGRIDVER
10032+
.. versionadded:: 3.16.0
1003310033
1003410034
.. seealso:: `mask`
1003510035

cf/data/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1012,7 +1012,7 @@ def normalize_chunks(chunks, shape=None, dtype=None):
10121012
identical to `dask.array.core.normalize_chunks`. If it does, then
10131013
the output chunks for each such axis will be ``(nan,)``.
10141014
1015-
.. versionadded UGRIDVER
1015+
.. versionadded 3.16.0
10161016
10171017
:Parameters:
10181018

cf/domaintopology.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ class DomainTopology(mixin.PropertiesData, cfdm.DomainTopology):
106106
be accessed with the `nc_set_variable`, `nc_get_variable`,
107107
`nc_del_variable`, and `nc_has_variable` methods.
108108
109-
.. versionadded:: UGRIDVER
109+
.. versionadded:: 3.16.0
110110
111111
"""
112112

@@ -116,7 +116,7 @@ def cell(self):
116116
117117
{{cell type}}
118118
119-
.. versionadded:: UGRIDVER
119+
.. versionadded:: 3.16.0
120120
121121
.. seealso:: `del_cell`, `get_cell`, `has_cell`, `set_cell`
122122
@@ -150,7 +150,7 @@ def identity(
150150
* The netCDF variable name, preceded by ``'ncvar%'``.
151151
* The value of the *default* parameter.
152152
153-
.. versionadded:: UGRIDVER
153+
.. versionadded:: 3.16.0
154154
155155
.. seealso:: `id`, `identities`, `long_name`, `cell`,
156156
`nc_get_variable`, `standard_name`

0 commit comments

Comments
 (0)