Skip to content

Commit b546bac

Browse files
committed
Stop deprecating old wrapper funcs (they were just there for docs)
1 parent 050f428 commit b546bac

File tree

1 file changed

+0
-37
lines changed

1 file changed

+0
-37
lines changed

proplot/axes/plot.py

Lines changed: 0 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -4454,40 +4454,3 @@ def _concatenate_docstrings(func):
44544454
_text_extras = _process_wrapper(text_extras)
44554455
_violinplot_extras = _process_wrapper(violinplot_extras)
44564456
_vlines_extras = _process_wrapper(vlines_extras)
4457-
4458-
# Deprecated
4459-
# NOTE: Unlike other deprecated functions don't bother importing them to the
4460-
# top-level namespace. Will clutter things and it would have been impossible
4461-
# for any user to work with these outside of the Axes interface.
4462-
(
4463-
cmap_changer,
4464-
cycle_changer,
4465-
colorbar_wrapper,
4466-
legend_wrapper,
4467-
text_wrapper,
4468-
bar_wrapper,
4469-
barh_wrapper,
4470-
fill_between_wrapper,
4471-
fill_betweenx_wrapper,
4472-
boxplot_wrapper,
4473-
violinplot_wrapper,
4474-
vlines_wrapper,
4475-
hlines_wrapper,
4476-
scatter_wrapper,
4477-
) = warnings._rename_objs(
4478-
'0.7',
4479-
cmap_changer=apply_cmap,
4480-
cycle_changer=apply_cycle,
4481-
colorbar_wrapper=colorbar_extras,
4482-
legend_wrapper=legend_extras,
4483-
text_wrapper=text_extras,
4484-
bar_wrapper=bar_extras,
4485-
barh_wrapper=barh_extras,
4486-
fill_between_wrapper=fill_between_extras,
4487-
fill_betweenx_wrapper=fill_betweenx_extras,
4488-
boxplot_wrapper=boxplot_extras,
4489-
violinplot_wrapper=violinplot_extras,
4490-
vlines_wrapper=vlines_extras,
4491-
hlines_wrapper=hlines_extras,
4492-
scatter_wrapper=scatter_extras,
4493-
)

0 commit comments

Comments
 (0)