Skip to content

Commit

Permalink
Merge pull request #424 from olemke/support-matplotlib-3.9
Browse files Browse the repository at this point in the history
Fix compatibility with matplotlib 3.9
  • Loading branch information
olemke authored Jun 3, 2024
2 parents f49712c + 1ea21ef commit 6bd4936
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dependencies:
- gdal
- h5netcdf
- keras
- matplotlib>=1.4,<3.9
- matplotlib>=1.4
- netCDF4>=1.1.1
- nbsphinx
- numba
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ fsspec!=2023.12.0,!=2023.12.1,!=2024.3.1
gdal
h5netcdf
keras
matplotlib>=1.4,<3.9
matplotlib>=1.4
nbsphinx
netCDF4>=1.1.1
numba
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
"fsspec!=2023.12.0,!=2023.12.1,!=2024.3.1",
"h5netcdf",
"imageio",
"matplotlib>=1.4,<3.9",
"matplotlib>=1.4",
"netCDF4>=1.1.1",
"numexpr",
"numpy>=1.13",
Expand Down
2 changes: 1 addition & 1 deletion typhon/plots/plots.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import matplotlib.pyplot as plt
from matplotlib.patches import Rectangle
from matplotlib.ticker import FuncFormatter
from matplotlib.cm import get_cmap
from matplotlib.pyplot import get_cmap
import scipy.stats as stats

from typhon.plots import formatter
Expand Down

0 comments on commit 6bd4936

Please sign in to comment.