Skip to content

Commit 404f6f4

Browse files
committed
update msg and add context
1 parent 5b257ca commit 404f6f4

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

ultraplot/axes/base.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2521,6 +2521,9 @@ def _sharey_setup(self, sharey, **kwargs):
25212521
self._share_long_axis(sharey, "left", **kwargs) # y axis of left panels
25222522
self._share_long_axis(sharey, "right", **kwargs)
25232523

2524+
def _share_alty(self, share, side, **kwargs):
2525+
pass
2526+
25242527
def _share_short_axis(self, share, side, **kwargs):
25252528
"""
25262529
Share the "short" axes of panels in this subplot with other panels.

ultraplot/figure.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -826,7 +826,7 @@ def _parse_backend(backend=None, basemap=None):
826826
# Basemap is currently being developed again so are removing the deprecation warning
827827
if backend == "basemap":
828828
warnings._warn_ultraplot(
829-
f"{backend=} will be deprecated in next major release (v1.6)"
829+
f"{backend=} will be deprecated in next major release (v1.60.0). See https://github.com/Ultraplot/ultraplot/pull/243#pullrequestreview-2885501470"
830830
)
831831
return backend
832832

0 commit comments

Comments
 (0)