Skip to content

Commit 1ccdcce

Browse files
authored
Figure.grdcontour: Remove the deprecated syntax for the 'annotation' parameter (#3428)
1 parent 423536b commit 1ccdcce

File tree

2 files changed

+0
-33
lines changed

2 files changed

+0
-33
lines changed

pygmt/src/grdcontour.py

-16
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
grdcontour - Plot a contour figure.
33
"""
44

5-
import warnings
6-
75
from pygmt.clib import Session
86
from pygmt.helpers import (
97
build_arg_list,
@@ -140,20 +138,6 @@ def grdcontour(self, grid, **kwargs):
140138
"""
141139
kwargs = self._preprocess(**kwargs)
142140

143-
# Backward compatibility with the old syntax for the annotation parameter, e.g.,
144-
# [100, "e", "f10p", "gred"].
145-
if is_nonstr_iter(kwargs.get("A")) and any(
146-
i[0] in "acdefgijlLnoprtuvwx=" for i in kwargs["A"] if isinstance(i, str)
147-
):
148-
msg = (
149-
"Argument of the parameter 'annotation'/'A' is using the old, deprecated "
150-
"syntax. Please refer to the PyGMT documentation for the new syntax. "
151-
"The warning will be removed in v0.14.0 and the old syntax will no longer "
152-
"be supported. "
153-
)
154-
warnings.warn(msg, category=FutureWarning, stacklevel=2)
155-
kwargs["A"] = "+".join(f"{item}" for item in kwargs["A"])
156-
157141
# Specify levels for the annotation and levels parameters.
158142
# One level is converted to a string with a trailing comma to separate it from
159143
# specifying an interval.

pygmt/tests/test_grdcontour.py

-17
Original file line numberDiff line numberDiff line change
@@ -45,23 +45,6 @@ def test_grdcontour_one_level(grid):
4545
return fig
4646

4747

48-
@pytest.mark.mpl_image_compare(filename="test_grdcontour_one_level.png")
49-
def test_grdcontour_old_annotations(grid):
50-
"""
51-
Test the old syntax for the annotation parameter using "sequence_plus".
52-
Modified from the "test_grdcontour_one_level()" test. Can be removed in v0.14.0.
53-
"""
54-
fig = Figure()
55-
fig.grdcontour(
56-
grid=grid,
57-
levels=[400],
58-
annotation=["570,", "gwhite"],
59-
projection="M10c",
60-
frame=True,
61-
)
62-
return fig
63-
64-
6548
@pytest.mark.mpl_image_compare
6649
def test_grdcontour_multiple_levels(grid):
6750
"""

0 commit comments

Comments
 (0)