We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In delight.py, the line:
from mpl_toolkits.axes_grid.inset_locator import inset_axes
is broken with the latest version of mpl_toolkit. Later versions have that function under mpl_toolkits.axes_grid1.inset_locator (see: https://matplotlib.org/stable/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.inset_axes.html). I recommend updating to:
mpl_toolkits.axes_grid1.inset_locator
from mpl_toolkits.axes_grid1.inset_locator import inset_axes
The text was updated successfully, but these errors were encountered:
In delight.py, the line: from mpl_toolkits.axes_grid.inset_locator import inset_axes is broken with the latest version of mpl_toolkit. Later versions have that function under mpl_toolkits.axes_grid1.inset_locator (see: https://matplotlib.org/stable/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.inset_axes.html). I recommend updating to: from mpl_toolkits.axes_grid1.inset_locator import inset_axes
Indeed, I myself changed the "axes_grid1" folder to "axes_grid" hence "Module not found" error for mpl_toolkits.axes_grid disappeared.
Sorry, something went wrong.
No branches or pull requests
In delight.py, the line:
from mpl_toolkits.axes_grid.inset_locator import inset_axes
is broken with the latest version of mpl_toolkit. Later versions have that function under
mpl_toolkits.axes_grid1.inset_locator
(see: https://matplotlib.org/stable/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.inset_axes.html). I recommend updating to:from mpl_toolkits.axes_grid1.inset_locator import inset_axes
The text was updated successfully, but these errors were encountered: