Python 3.4を使用してmatplotlibを使用しています。プログラムを起動すると、次の警告メッセージが表示されます。
C:\Python34-32bits\lib\site-packages\matplotlib\cbook.py:123: MatplotlibDeprecationWarning: matplotlib.mpl モジュールはバージョン 1.3 で廃止されました。
import matplotlib as mpl
代わりに使用してください。warnings.warn(メッセージ、mplDeprecation、stacklevel=1)
私が知る限り、私は mpl を使用しておらず、matplotlib に関するすべてのインポートは次のとおりです。
import matplotlib.pyplot as plt
import matplotlib.animation as animation
私がすべきことはありますか?