-
Notifications
You must be signed in to change notification settings - Fork 7
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
Problems with matplotlib version 2.2.3 #10
Comments
Thanks for raising this issue. The solution is probably to stop importing |
I got the error while trying to test the example code from the walkthrough: I have managed to fix it on my machine by replacing line 104 in base.py with |
Hmm.... I'm on matplotlib 3.1.1 and I have no problems with the tutorial on master. Can I ask you, what version of peri are you running and how did you install it? Can you try to install it from master and see if it works? I think this problem may have already been fixed on master. If so, it may be that the version on pypi is out of date and needs to be updated. |
I installed it using pip, I'll try and install from master and will report back! |
Everything works fine for me on the master version, so looks like that update is all that's needed to solve my issue! |
Should be fixed with new version on pypi |
The newest versions of matplotlib no longer includes support for axes.color_cycle as an rc parameter. Apparently this was deprecated in matplotlib 1.5
It seems that the solution to this is to use the cycler package, as in this example: https://matplotlib.org/1.5.1/examples/color/color_cycle_demo.html
The problem in in file base.py line 104, but I'm currently not sure how exactly this needs to be updated.
The text was updated successfully, but these errors were encountered: