Skip to content

Commit 10c8878

Browse files
committed
Drop Python 3.10 support and add 3.14
1 parent 05b3c24 commit 10c8878

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

conda-env/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ channels:
77
dependencies:
88
# Base
99
# =================
10-
- python >=3.10
10+
- python >=3.11,<=3.14
1111
- pip
1212
- setuptools
1313
- beautifulsoup4

conda-env/dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ channels:
55
dependencies:
66
# Base
77
# =======================
8-
- python >=3.10
8+
- python >=3.11,<=3.14
99
- pip
1010
- setuptools
1111
- beautifulsoup4

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,17 @@ authors = [
1515
]
1616
license = { text = "BSD 3-Clause" }
1717
readme = "README.md"
18-
requires-python = ">=3.10"
18+
requires-python = ">=3.11"
1919
classifiers = [
2020
"Development Status :: 5 - Production/Stable",
2121
"Intended Audience :: Developers",
2222
"License :: OSI Approved :: BSD 3-Clause License",
2323
"Natural Language :: English",
2424
"Programming Language :: Python :: 3",
25-
"Programming Language :: Python :: 3.10",
2625
"Programming Language :: Python :: 3.11",
2726
"Programming Language :: Python :: 3.12",
2827
"Programming Language :: Python :: 3.13",
28+
"Programming Language :: Python :: 3.14",
2929
]
3030
dependencies = [
3131
"beautifulsoup4",
@@ -215,7 +215,7 @@ testpaths = "tests/e3sm_diags"
215215

216216
[tool.mypy]
217217
# Docs: https://mypy.readthedocs.io/en/stable/config_file.html
218-
python_version = "3.10"
218+
python_version = "3.13"
219219
check_untyped_defs = true
220220
ignore_missing_imports = true
221221
warn_unused_ignores = true

0 commit comments

Comments
 (0)