Per matplotlib's official documentation pyplot.gca will no longer accept keyword arguments.
For imexam, this breaks code like:
ax = fig.gca(projection='3d')
at line 1626 in imexamine.py.
One potential fix might be to use ax = fig.add_subplot(projection='3d') instead as suggested here.
This is only relevant for matplotlib version 3.4 and higher and can be avoided locally by using older versions.
Per matplotlib's official documentation
pyplot.gcawill no longer accept keyword arguments.For imexam, this breaks code like:
ax = fig.gca(projection='3d')at line 1626 in imexamine.py.
One potential fix might be to use
ax = fig.add_subplot(projection='3d')instead as suggested here.This is only relevant for matplotlib version 3.4 and higher and can be avoided locally by using older versions.