Skip to content

Commit e645a0a

Browse files
Consolidate duplicate entries in RELEASE.md checklist
1 parent a042c34 commit e645a0a

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

RELEASE.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@
55
* Set the `NEXTVERSION` version marker across the codebase (added in PRs
66
to mark the next version where the exact number/name is not yet decided)
77
by recursively finding all occurences within the `cf` directory and replacing
8-
them with the upcoming version name `X.Y.Z` (replace `X`, `Y` and `Z` with
9-
appropriate numbers), via running this command in `cf-python` repo root
8+
them with the upcoming version name `X.Y.Z` (replace `X`, `Y` and `Z`
9+
appropriately for the value of the now correct `cf.__version__`),
10+
via running this command in `cf-python` repo root
1011
directory (don't run it repo-wide or it will e.g. edit this script!):
1112

1213
```console
@@ -28,9 +29,6 @@
2829
* Make sure that `Changelog.rst` is up to date (version, date and
2930
changes).
3031

31-
* Search for occurences of `NEXTRELEASE` and replace them with the
32-
release version (i.e. the value of the now correct `cf.__version__`)
33-
3432
* Deprecated methods and keyword arguments: Check the code for
3533
deprecated methods and keyword arguments that can be completely
3634
removed, i.e. those with a ``removed_at`` version that is at or

cf/functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2036,7 +2036,7 @@ def normalize_slice(index, size, cyclic=False):
20362036
If *index* is not a slice, or *cyclic* is True and *index* is not
20372037
a cyclic slice, then an `IndexError` is raised.
20382038
2039-
.. versionadded:: NEXTRELEASE
2039+
.. versionadded:: 3.16.2
20402040
20412041
:Parameters:
20422042

0 commit comments

Comments
 (0)