Open lschall opened 1 year ago
Any update @lschall ?
Will look into it this week again, sorry.
This is fixed in unit_tests
branch by fixing the respective versions
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 limitingnumpy<1.24.0
. Maybe matplotlib will adapt to this (not so new) numpy version soon?