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

Python 3.13 #831

Merged
merged 2 commits into from
Nov 15, 2024
Merged
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
2 changes: 2 additions & 0 deletions .github/workflows/docs-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ jobs:
- python-version: 3.11
os: macOS
- python-version: 3.12
os: Windows
- python-version: 3.13
os: macOS

steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.10', 3.11]
python-version: ['3.10', 3.11, 3.12]
check-links: [false]
include:
- python-version: 3.12
- python-version: 3.13
check-links: true
outputs:
doc-version: ${{ steps.build-docs.outputs.doc-version }}
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/tests-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,13 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.10', 3.12]
python-version: ['3.10', 3.13]
os: [macOS, Windows]
include:
- python-version: 3.11
os: Windows
- python-version: 3.12
os: macOS

steps:
- name: Checkout source
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,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]
dep-versions: [Latest]
no-extras: ['']
include:
Expand All @@ -34,7 +34,7 @@ jobs:
- python-version: '3.10'
dep-versions: Minimum
no-extras: 'No Extras'
- python-version: 3.12
- python-version: 3.13
dep-versions: Latest
no-extras: 'No Extras'

Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Intended Audience :: Science/Research",
Expand Down