Skip to content

Commit

Permalink
deprecate get_iloc_indexer
Browse files Browse the repository at this point in the history
  • Loading branch information
hoesler committed Feb 14, 2023
1 parent 1fe2d74 commit 4850eb2
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions sktime/datatypes/_vectorize.py
Expand Up @@ -183,6 +183,12 @@ def get_iter_indices(self):
"""
return self.iter_indices

# TODO: remove in v0.18.0
@deprecated(
version="0.16.1",
reason="get_iloc_indexer will be removed in v0.18.0",
category=FutureWarning,
)
def get_iloc_indexer(self, i: int):
"""Get iloc row/column indexer for i-th list element.
Expand Down

0 comments on commit 4850eb2

Please sign in to comment.