Skip to content
Draft
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
5 changes: 3 additions & 2 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
- python3.14
schedule:
- cron: "0 0 * * *"

Expand All @@ -21,7 +22,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.12", "3.13"]
python-version: ["3.12", "3.13", "3.14"]
name: Linux Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v6
Expand Down Expand Up @@ -67,7 +68,7 @@ jobs:
if: github.repository == 'ESMValGroup/ESMValTool' # avoid GAs in forks
strategy:
matrix:
python-version: ["3.12", "3.13"]
python-version: ["3.12", "3.13", "3.14"]
fail-fast: false
name: OSX Python ${{ matrix.python-version }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ dependencies:
- prov
- pyproj >=2.1
- pys2index # only from conda-forge
- python >=3.12,<3.14
- python >=3.12,<3.15
- python-cdo
- python-dateutil
- pyyaml
Expand Down
2 changes: 1 addition & 1 deletion environment_osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ dependencies:
- prov
- pyproj >=2.1
- pys2index >=0.1.5 # only from conda-forge; https://github.com/ESMValGroup/ESMValTool/pull/3792
- python >=3.12,<3.14
- python >=3.12,<3.15
- python-cdo
- python-dateutil
- pyyaml
Expand Down
Loading