Skip to content
Open
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 ci/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
matplotlib==3.10.9
numpy==2.4.6
numpy==2.5.0
pandas==3.0.3
pooch==1.9.0
pint==0.25.3
Expand Down
7 changes: 7 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,13 @@ filterwarnings = [
'ignore:\nPyarrow will become a required dependency of pandas:DeprecationWarning',
# Not yet fixed in xarray
"ignore:__array__ implementation doesn't accept a copy keyword:DeprecationWarning",
# Needs an xarray newer than 2026.4.0
"ignore:The 'generic' unit for NumPy timedelta is deprecated:DeprecationWarning:xarray.core.dtypes:98",
"ignore:Setting the dtype on a NumPy array has been deprecated in NumPy 2.5:DeprecationWarning:xarray.core.variable:241",
# Needs Cartopy newer than 0.25.0
"ignore:Setting the shape on a NumPy array has been deprecated in NumPy 2.5:DeprecationWarning:cartopy.img_transform:301",
# Need matplotlib >3.10.9
"ignore:The 'generic' unit for NumPy timedelta is deprecated:DeprecationWarning:matplotlib.dates:328",
# Needs matplotlib >=3.10.7 for fixes
"ignore:'\\S+' deprecated - use '\\S+':DeprecationWarning:matplotlib._fontconfig_pattern",
"ignore:'\\S+' deprecated - use '\\S+':DeprecationWarning:matplotlib._mathtext"
Expand Down
Loading