8000 Replace axes_grid by axes_grid1 in test by ImportanceOfBeingErnest · Pull Request #12360 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Replace axes_grid by axes_grid1 in test #12360

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/mpl_toolkits/axes_grid/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
warn_deprecated(since='2.1',
name='mpl_toolkits.axes_grid',
alternative='mpl_toolkits.axes_grid1 and'
' mpl_toolkits.axisartist provies the same'
' functionality',
' mpl_toolkits.axisartist, which provide'
' the same functionality',
obj_type='module')
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
from matplotlib.transforms import Affine2D, Transform
from matplotlib.testing.decorators import image_comparison

from mpl_toolkits.axes_grid.parasite_axes import ParasiteAxesAuxTrans, \
SubplotHost
from mpl_toolkits.axes_grid1.parasite_axes import ParasiteAxesAuxTrans
from mpl_toolkits.axisartist import SubplotHost
from mpl_toolkits.axes_grid1.parasite_axes import host_subplot_class_factory
from mpl_toolkits.axisartist import angle_helper
from mpl_toolkits.axisartist.axislines import Axes
Expand Down
0