Skip to content

Commit f354152

Browse files
committed
Add support for Python 3.13
1 parent 85572cc commit f354152

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

.github/workflows/build_workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
shell: bash -l {0}
5151
strategy:
5252
matrix:
53-
python-version: ["3.10", "3.11", "3.12"]
53+
python-version: ["3.10", "3.11", "3.12", "3.13"]
5454
container:
5555
image: ghcr.io/e3sm-project/containers-e3sm-diags-test-data:e3sm-diags-test-data-0.0.2
5656
steps:

pyproject.toml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ classifiers = [
2525
"Programming Language :: Python :: 3.10",
2626
"Programming Language :: Python :: 3.11",
2727
"Programming Language :: Python :: 3.12",
28+
"Programming Language :: Python :: 3.13",
2829
]
2930
dependencies = [
3031
"beautifulsoup4",
@@ -49,13 +50,13 @@ dependencies = [
4950

5051
[project.optional-dependencies]
5152
test = ["pytest", "pytest-cov"]
52-
docs = ["sphinx", "sphinx_rtd_theme", "sphinx-multiversion", "sphinx-copybutton"]
53-
dev = [
54-
"pre-commit",
55-
"types-PyYAML",
56-
"ruff",
57-
"mypy",
53+
docs = [
54+
"sphinx",
55+
"sphinx_rtd_theme",
56+
"sphinx-multiversion",
57+
"sphinx-copybutton",
5858
]
59+
dev = ["pre-commit", "types-PyYAML", "ruff", "mypy"]
5960

6061

6162
[project.urls]

0 commit comments

Comments
 (0)