Skip to content

Commit

Permalink
add version comment
Browse files Browse the repository at this point in the history
  • Loading branch information
adrinjalali committed Jun 4, 2024
1 parent 665f1a2 commit d58abfb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion skops/utils/_fixes.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
def boxplot(ax, *, tick_labels, **kwargs):
"""A function to handle labels->tick_labels deprecation."""
"""A function to handle labels->tick_labels deprecation.
labels is deprecated in 3.9 and removed in 3.11.
"""
try:
return ax.boxplot(tick_labels=tick_labels, **kwargs)
except TypeError:
Expand Down

0 comments on commit d58abfb

Please sign in to comment.