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

Pin cartopy<0.24 on v2.11.x release branch #3770

Merged
merged 12 commits into from
Oct 14, 2024
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
push:
branches:
- main
- pin_cartopy_on_v211branch
valeriupredoi marked this conversation as resolved.
Show resolved Hide resolved
schedule:
- cron: '0 0 * * *'

Expand Down
3 changes: 2 additions & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@ channels:

dependencies:
- aiohttp
- cartopy
- cartopy <0.24 # https://github.com/ESMValGroup/ESMValTool/issues/3767
- cdo >=2.3.0
- cdsapi
- cf-units
- cftime
- cmocean
- curl <8.10 # https://github.com/ESMValGroup/ESMValTool/pull/3755
- cython
- dask
- distributed
Expand Down
2 changes: 1 addition & 1 deletion environment_osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ channels:

dependencies:
- aiohttp
- cartopy
- cartopy <0.24 # https://github.com/ESMValGroup/ESMValTool/issues/3767
- cdo >=2.3.0
- cdsapi
- cf-units
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ def _create_regression_plot(tas_cube,
y_reg = reg.slope * x_reg + reg.intercept

# Plot data
title = (f'{FEEDBACK_PARAMETERS.get(var,var)} TOA radiance for '
title = (f'{FEEDBACK_PARAMETERS.get(var, var)} TOA radiance for '
f'{dataset_name}')
filename = f'{var}_regression_{dataset_name}'
if description is not None:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
# Use with pip install . to install from source
'install': [
'aiohttp',
'cartopy',
'cartopy<0.24', # github.com/ESMValGroup/ESMValTool/issues/3767
'cdo',
'cdsapi',
'cf-units',
Expand Down
Loading