Skip to content

Commit 34275cb

Browse files
Replace NEXTVERSION placeholder with new release version 3.17.0
1 parent 51d82a3 commit 34275cb

File tree

8 files changed

+30
-30
lines changed

8 files changed

+30
-30
lines changed

cf/aggregate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5005,7 +5005,7 @@ def dsg_feature_type_axis(meta, axis):
50055005
def _fix_promoted_field_ancillaries(output_meta, axes_aggregated):
50065006
"""Remove non-aggregated axes from promoted field ancillaries.
50075007
5008-
.. versionadded:: NEXTVERSION
5008+
.. versionadded:: 3.17.0
50095009
50105010
:Parameters:
50115011

cf/data/array/aggregatedarray.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
class AggregatedArray(Container, cfdm.AggregatedArray):
88
"""An array stored in a CF aggregation variable.
99
10-
.. versionadded:: NEXTVERSION
10+
.. versionadded:: 3.17.0
1111
1212
"""
1313

1414
def __new__(cls, *args, **kwargs):
1515
"""Store fragment array classes.
1616
17-
.. versionadded:: NEXTVERSION
17+
.. versionadded:: 3.17.0
1818
1919
"""
2020
# Override the inherited FragmentFileArray class

cf/data/data.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2807,7 +2807,7 @@ def _concatenate_conform_units(cls, data1, units0, relaxed_units, copy):
28072807
overridden in subclasses, to allow for customisation of the
28082808
concatenation process.
28092809
2810-
.. versionadded:: NEXTVERSION
2810+
.. versionadded:: 3.17.0
28112811
28122812
.. seealso:: `concatenate`
28132813
@@ -2868,7 +2868,7 @@ def _concatenate_post_process(
28682868
overridden in subclasses, to allow for customisation of the
28692869
concatenation process.
28702870
2871-
.. versionadded:: NEXTVERSION
2871+
.. versionadded:: 3.17.0
28722872
28732873
.. seealso:: `concatenate`
28742874

cf/data/fragment/fragmentfilearray.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ class FragmentFileArray(
99
):
1010
"""Fragment of aggregated data in a file.
1111
12-
.. versionadded:: NEXTVERSION
12+
.. versionadded:: 3.17.0
1313
1414
"""
1515

1616
def __new__(cls, *args, **kwargs):
1717
"""Store fragment classes.
1818
19-
.. versionadded:: NEXTVERSION
19+
.. versionadded:: 3.17.0
2020
2121
"""
2222
# Import fragment classes. Do this here (as opposed to outside

cf/functions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1358,7 +1358,7 @@ def CF():
13581358
def CFA():
13591359
"""The version of the CFA conventions.
13601360
1361-
Deprecated at version NEXTVERSION and is no longer available.
1361+
Deprecated at version 3.17.0 and is no longer available.
13621362
13631363
This indicates which version of the CFA conventions are
13641364
represented by this release of the cf package, and therefore the
@@ -1381,7 +1381,7 @@ def CFA():
13811381
13821382
"""
13831383
_DEPRECATION_ERROR_FUNCTION(
1384-
"CFA", version="NEXTVERSION", removed_at="5.0.0"
1384+
"CFA", version="3.17.0", removed_at="5.0.0"
13851385
) # pragma: no cover
13861386

13871387

cf/maths.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ def histogram(*digitized, density=False):
160160
bins of unity size are chosen; it is not a probability
161161
mass function.
162162
163-
.. versionadded:: NEXTVERSION
163+
.. versionadded:: 3.17.0
164164
165165
:Returns:
166166

cf/read_write/read.py

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ class read(cfdm.read):
211211
``'UM'`` UM fields files or PP files
212212
============ ============================================
213213
214-
.. versionadded:: NEXTVERSION
214+
.. versionadded:: 3.17.0
215215
216216
cdl_string: `bool`, optional
217217
If True and the format to read is CDL, read a string
@@ -362,43 +362,43 @@ class read(cfdm.read):
362362
363363
{{read unpack: `bool`}}
364364
365-
.. versionadded:: NEXTVERSION
365+
.. versionadded:: 3.17.0
366366
367367
{{read domain: `bool`, optional}}
368368
369369
.. versionadded:: 3.11.0
370370
371371
{{read netcdf_backend: `None` or (sequence of) `str`, optional}}
372372
373-
.. versionadded:: NEXTVERSION
373+
.. versionadded:: 3.17.0
374374
375375
{{read storage_options: `dict` or `None`, optional}}
376376
377-
.. versionadded:: NEXTVERSION
377+
.. versionadded:: 3.17.0
378378
379379
{{read cache: `bool`, optional}}
380380
381-
.. versionadded:: NEXTVERSION
381+
.. versionadded:: 3.17.0
382382
383383
{{read dask_chunks: `str`, `int`, `None`, or `dict`, optional}}
384384
385-
.. versionadded:: NEXTVERSION
385+
.. versionadded:: 3.17.0
386386
387387
{{read store_dataset_chunks: `bool`, optional}}
388388
389-
.. versionadded:: NEXTVERSION
389+
.. versionadded:: 3.17.0
390390
391391
{{read cfa: `dict`, optional}}
392392
393393
.. versionadded:: 3.15.0
394394
395395
{{read cfa_write: sequence of `str`, optional}}
396396
397-
.. versionadded:: NEXTVERSION
397+
.. versionadded:: 3.17.0
398398
399399
{{read to_memory: (sequence of) `str`, optional}}
400400
401-
.. versionadded:: NEXTVERSION
401+
.. versionadded:: 3.17.0
402402
403403
umversion: deprecated at version 3.0.0
404404
Use the *um* parameter instead.
@@ -418,13 +418,13 @@ class read(cfdm.read):
418418
chunk: deprecated at version 3.14.0
419419
Use the *dask_chunks* parameter instead.
420420
421-
chunks: deprecated at version NEXTVERSION
421+
chunks: deprecated at version 3.17.0
422422
Use the *dask_chunks* parameter instead.
423423
424-
fmt: deprecated at version NEXTVERSION
424+
fmt: deprecated at version 3.17.0
425425
Use the *file_type* parameter instead.
426426
427-
ignore_read_error: deprecated at version NEXTVERSION
427+
ignore_read_error: deprecated at version 3.17.0
428428
Use the *file_type* parameter instead.
429429
430430
:Returns:
@@ -569,7 +569,7 @@ def __new__(
569569
"cf.read",
570570
{"fmt": fmt},
571571
"Use keyword 'file_type' instead.",
572-
version="NEXTVERSION",
572+
version="3.17.0",
573573
removed_at="5.0.0",
574574
) # pragma: no cover
575575

@@ -578,7 +578,7 @@ def __new__(
578578
"cf.read",
579579
{"ignore_read_error": ignore_read_error},
580580
"Use keyword 'file_type' instead.",
581-
version="NEXTVERSION",
581+
version="3.17.0",
582582
removed_at="5.0.0",
583583
) # pragma: no cover
584584

cf/read_write/um/umread.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -548,7 +548,7 @@ def __init__(
548548
presence or not of size 1 dimensions is determined by
549549
how the data are stored in its dataset.
550550
551-
.. versionadded:: NEXTVERSION
551+
.. versionadded:: 3.17.0
552552
553553
unsqueeze: `bool`, optional
554554
If True then ensure that field construct data arrays
@@ -558,7 +558,7 @@ def __init__(
558558
is determined by how the data are stored in its
559559
dataset.
560560
561-
.. versionadded:: NEXTVERSION
561+
.. versionadded:: 3.17.0
562562
563563
unpack: `bool`, optional
564564
If True, the default, then unpack arrays by convention
@@ -569,7 +569,7 @@ def __init__(
569569
``scale_factor``, as applied to lookup header entries
570570
BDATUM and BMKS respectively.
571571
572-
.. versionadded:: NEXTVERSION
572+
.. versionadded:: 3.17.0
573573
574574
kwargs: *optional*
575575
Keyword arguments providing extra CF properties for each
@@ -3480,7 +3480,7 @@ def read(
34803480
presence or not of size 1 dimensions is determined by
34813481
how the data are stored in its dataset.
34823482
3483-
.. versionadded:: NEXTVERSION
3483+
.. versionadded:: 3.17.0
34843484
34853485
unsqueeze: `bool`, optional
34863486
If True then ensure that field construct data arrays
@@ -3490,7 +3490,7 @@ def read(
34903490
is determined by how the data are stored in its
34913491
dataset.
34923492
3493-
.. versionadded:: NEXTVERSION
3493+
.. versionadded:: 3.17.0
34943494
34953495
unpack: `bool`, optional
34963496
If True, the default, then unpack arrays by convention
@@ -3501,7 +3501,7 @@ def read(
35013501
``scale_factor``, as applied to lookup header entries
35023502
BDATUM and BMKS respectively.
35033503
3504-
.. versionadded:: NEXTVERSION
3504+
.. versionadded:: 3.17.0
35053505
35063506
:Returns:
35073507

0 commit comments

Comments
 (0)