Skip to content

Commit ce5daa9

Browse files
authored
Merge pull request #3955 from dopplershift/add-py314
MNT: Add support for Python 3.14
2 parents 64341d5 + 7dfd03f commit ce5daa9

5 files changed

Lines changed: 12 additions & 9 deletions

File tree

.github/workflows/docs-conda.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ jobs:
2222
fail-fast: false
2323
matrix:
2424
include:
25-
- python-version: 3.11
26-
os: Windows
2725
- python-version: 3.11
2826
os: macOS
2927
- python-version: 3.12
3028
os: Windows
3129
- python-version: 3.13
3230
os: macOS
31+
- python-version: 3.14
32+
os: Windows
3333

3434
steps:
3535
- name: Checkout source

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424
strategy:
2525
fail-fast: false
2626
matrix:
27-
python-version: [3.11, 3.12]
27+
python-version: [3.11, 3.12, 3.13]
2828
check-links: [false]
2929
include:
30-
- python-version: 3.13
30+
- python-version: 3.14
3131
check-links: true
3232
outputs:
3333
doc-version: ${{ steps.build-docs.outputs.doc-version }}

.github/workflows/tests-conda.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,13 @@ jobs:
2828
strategy:
2929
fail-fast: false
3030
matrix:
31-
python-version: [3.11, 3.13]
31+
python-version: [3.11, 3.14]
3232
os: [macOS, Windows]
3333
include:
3434
- python-version: 3.12
3535
os: macOS
36+
- python-version: 3.13
37+
os: Windows
3638

3739
steps:
3840
- name: Checkout source

.github/workflows/tests-pypi.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,16 @@ jobs:
2525
strategy:
2626
fail-fast: false
2727
matrix:
28-
python-version: [3.11, 3.12, 3.13]
28+
python-version: [3.11, 3.12, 3.13, 3.14]
2929
dep-versions: [Latest]
3030
no-extras: ['']
3131
include:
32-
- python-version: '3.11'
32+
- python-version: 3.11
3333
dep-versions: Minimum
34-
- python-version: '3.11'
34+
- python-version: 3.11
3535
dep-versions: Minimum
3636
no-extras: 'No Extras'
37-
- python-version: 3.13
37+
- python-version: 3.14
3838
dep-versions: Latest
3939
no-extras: 'No Extras'
4040

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ classifiers = [
1717
"Programming Language :: Python :: 3.11",
1818
"Programming Language :: Python :: 3.12",
1919
"Programming Language :: Python :: 3.13",
20+
"Programming Language :: Python :: 3.14",
2021
"Topic :: Scientific/Engineering",
2122
"Topic :: Scientific/Engineering :: Atmospheric Science",
2223
"Intended Audience :: Science/Research",

0 commit comments

Comments
 (0)