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

Support Python 3.13 #3805

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
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
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
push:
branches:
- main
- python313
schedule:
- cron: '0 0 * * *'

Expand All @@ -20,7 +21,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12", "3.13"]
name: Linux Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
Expand Down
11 changes: 6 additions & 5 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@ channels:
# ESMValCore.
# - conda-forge/label/esmvalcore_rc
- conda-forge
- conda-forge/label/rc_iris # only to test with iris==3.11rc0
- nodefaults

dependencies:
- aiohttp
- cartopy <0.24 # https://github.com/ESMValGroup/ESMValTool/issues/3767
- cartopy # should be free https://github.com/ESMValGroup/ESMValTool/issues/3769
- cdo >=2.3.0
- cdsapi
- cf-units
Expand All @@ -24,13 +25,13 @@ dependencies:
- ecmwf-api-client
- eofs
- esmpy # <8.6 safe https://github.com/SciTools/iris-esmf-regrid/issues/415
- esmvalcore 2.11.*
# - esmvalcore 2.11.*
- fiona
- fire
- fsspec
- gdal >=3.9.0
- importlib_metadata <8 # https://github.com/ESMValGroup/ESMValTool/issues/3699 only for Python 3.10/11 and esmpy<8.6
- iris >=3.6.1
- iris==3.11.0rc0 # first to support numpy2 and Python 3.13 # >=3.6.1
- iris-esmf-regrid >=0.10.0 # github.com/SciTools-incubator/iris-esmf-regrid/pull/342
- jinja2
- joblib
Expand All @@ -41,10 +42,10 @@ dependencies:
- nc-time-axis
- netCDF4
- numba
- numpy !=1.24.3,<2.0 # severe masking bug
- numpy !=1.24.3 # ,<2.0 # severe masking bug
- openpyxl
- packaging
- pandas==2.1.4 # unpin when ESMValCore released with https://github.com/ESMValGroup/ESMValCore/pull/2529
- pandas # ==2.1.4 # unpin when ESMValCore released with https://github.com/ESMValGroup/ESMValCore/pull/2529
- pip !=21.3
- progressbar2
- prov
Expand Down
Loading