Skip to content

Commit

Permalink
[skip-ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
gmaze committed Sep 13, 2024
1 parent e87afe1 commit 2669301
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion argopy/xarray.py
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,7 @@ def profile2point(self):
@deprecated(
"This method action and signature are deprecated and will break your code for versions >= 0.1.18. "
"In versions >= 0.1.18, this method action will be available in the new `transform_data_mode` method while "
"this method will change its behavior to really filter measurements according to DATA_MODE "
"this method will change its signature and behavior to really filter measurements according to DATA_MODE "
"or <PARAM>_DATA_MODE values.",
ignore_caller="postprocessing",
version="0.1.17",
Expand Down Expand Up @@ -611,6 +611,16 @@ def filter_data_mode( # noqa: C901
Returns
-------
:class:`xarray.Dataset`
.. deprecated:: 0.1.7
This method action and signature are deprecated and will break your code for versions >= 0.1.18.
In versions >= 0.1.18, this method behavior will be transferred to the new `transform_data_mode` method
while this method `filter_data_mode` will change its signature and behavior to really filter measurements
according to DATA_MODE or <PARAM>_DATA_MODE values.
"""
if self._type != "point":
raise InvalidDatasetStructure(
Expand Down

0 comments on commit 2669301

Please sign in to comment.