Skip to content

Commit

Permalink
Replace matplotlib.cbook.mplDeprecation with matplotlib.MatplotlibDep…
Browse files Browse the repository at this point in the history
…recationWarning, as it no longer exists
  • Loading branch information
bikegeek committed Nov 12, 2024
1 parent 3e6022c commit b3ca7b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/series_analysis/test_plot_series_by_init.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

# ignore the MatplotlibFutureDeprecation warning which does not affect this code
# since changes must be made to Cartopy
warnings.simplefilter(action='ignore', category=matplotlib.cbook.mplDeprecation)
warnings.simplefilter(action='ignore', category=matplotlib.MatplotlibDeprecationWarning)

@pytest.mark.skip('Requires large dataset to run and special packages, uncomment import to run')
def test_expected_files_created():
Expand Down

0 comments on commit b3ca7b2

Please sign in to comment.