-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
COMPAT: mpl 2.0.0 #13333
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
Comments
|
on OSX.
|
pandas master |
You need cycler >= 0.10. Should have pulled that from conda-forge |
hmm, maybe needs to be part of your recipe? |
There looks some errors / failures (most of them are caused by figure size check). Will dig in. Can we add one more
|
@sinhrks sure. is 2.0 rc available on a channel somewhere? |
Not yet. Will try to built from source if it's not available until I need. |
I think it is available on conda-forge: https://anaconda.org/conda-forge/matplotlib/labels (edit: at least the beta, not rc) |
There is no rc yet, should be one 'soon' |
@sinhrks for the figsize failures, I think the new default in MPL is 6.4 x 4.8. We had the old 8 x 6 as the default for |
@tacaswell does this make sense to you? Regarding import matplotlib.pyplot as plt
fig, ax = plt.subplots()
r = ax.errorbar(range(5), range(5), xerr=.2)
print(ax.lines) In MPL 1.5.x [<matplotlib.lines.Line2D object at 0x1193411d0>, <matplotlib.lines.Line2D object at 0x1193414a8>, <matplotlib.lines.Line2D object at 0x119341da0>] in MPL 2.0 beta [<matplotlib.lines.Line2D object at 0x117a79128>] I found matplotlib/matplotlib#5047 (don't draw caps by default) but not sure if that's what's going on here. |
We changed the default dpi so reduced the figure size (in inches) to keep the same figure size (in pixels). re errorbar: that does look correct, the caps are not created which does not even add the artists. I would look at the contents of |
@sinhrks I can work on this if you want. |
@TomAugspurger It would be very helpful! |
seems @tacaswell / @mdboom have been busy
https://github.com/matplotlib/matplotlib/releases/tag/v2.0.0b1
we should test with this.
is this going up on a
conda-forge
dev channel? (is there such a thing)?The text was updated successfully, but these errors were encountered: