Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix compatibility with matplotlib 3.9 #424

Merged
merged 2 commits into from
Jun 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading