We're using matplotlib's "crude" animation feature by means ofplt.pause(). The behavior of pause() changed in some way between matplotlib 3.3 and 3.4, such that the plot windows don't pop up when running algorithms with 3.4.
I've observed this on Linux---not sure if it varies by backend.
I note that the source code of pause() itself has not changed, and there's no mention of a change in the 3.4 release notes. I wonder if this is a bug in Matplotlib.
We're using
matplotlib
's "crude" animation feature by means ofplt.pause()
. The behavior ofpause()
changed in some way betweenmatplotlib
3.3 and 3.4, such that the plot windows don't pop up when running algorithms with 3.4.I've observed this on Linux---not sure if it varies by backend.
I note that the source code of
pause()
itself has not changed, and there's no mention of a change in the 3.4 release notes. I wonder if this is a bug in Matplotlib.