-
Notifications
You must be signed in to change notification settings - Fork 1
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
Voronoi plots are not compatible with numpy>=1.24.0 #34
Comments
Any update @lschall ? |
Will look into it this week again, sorry. |
This is fixed in |
Thanks! did not know that you pushed to this branch I used before |
I am aware of this. I was planning to adapt the plot to be able to run on numpy>1.23 |
I made a PR before ;) |
Which was open for 2 weeks and merged yesterday |
Okay, sorry now I got it! Let me know when you are ready to merge to master :) |
With updating to numpy 1.24.0 (see release information) numpy finally expired the deprecation for ragged/inhomogeneous (see here). For the voronoi plots we are generating in the efficiency plotting e.g. here we are using
matplotlib.patches
which needs a ragged array of the form[[x, y], height, width]
as input see here for matplotlib.patches documentation. This will cause the script to fail for latest numpy versions.So far I have not found a way to fix this other than limiting
numpy<1.24.0
. Maybe matplotlib will adapt to this (not so new) numpy version soon?The text was updated successfully, but these errors were encountered: