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 23 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
20 changes: 10 additions & 10 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ dependencies:
- cfgrib
- cftime
- cmocean
- curl <8.10 # https://github.com/ESMValGroup/ESMValTool/issues/3758
# - curl <8.10 # nay Py3.13 yet # https://github.com/ESMValGroup/ESMValTool/issues/3758
- cython
- dask !=2024.8.0 # https://github.com/dask/dask/issues/11296
- distributed
- ecmwf-api-client
- eofs
- esmpy
- esmvalcore 2.11.*
# - esmvalcore 2.11.* # nay Py3.13 yet
- fiona
- fire
- fsspec
Expand All @@ -40,21 +40,21 @@ dependencies:
- natsort
- nc-time-axis
- netCDF4
- numba
# - numba # nay Py3.13 yet
- numpy !=1.24.3 # 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
- psyplot >=1.5.0
- psy-maps >=1.5.0
- psy-reg >=1.5.0
- psy-simple >=1.5.0
# - psy-maps >=1.5.0 # nay Py3.13 yet
# - psy-reg >=1.5.0 # nay Py3.13 yet
# - psy-simple >=1.5.0 # nay Py3.13 yet
- pyproj >=2.1
- pys2index # only from conda-forge
- python >=3.10,<3.13
# - pys2index # only from conda-forge # not py313 compat
- python >=3.10
- python-cdo
- python-dateutil
- pyyaml
Expand All @@ -68,7 +68,7 @@ dependencies:
- seawater
- shapely >=2.0.2
- xarray >=0.12.0
- xesmf >=0.7.1
# - xesmf >=0.7.1 # nay Py3.13 yet via Numba
- xgboost >1.6.1 # github.com/ESMValGroup/ESMValTool/issues/2779
- xlsxwriter
- zarr
Expand Down
2 changes: 1 addition & 1 deletion environment_osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ dependencies:
- psy-simple >=1.5.0
- pyproj >=2.1
- pys2index >=0.1.5 # only from conda-forge; https://github.com/ESMValGroup/ESMValTool/pull/3792
- python >=3.10,<3.13
- python >=3.10
- python-cdo
- python-dateutil
- pyyaml
Expand Down
Loading