Skip to content

Commit 59e1c46

Browse files
authored
Merge pull request #291 from altheaden/remove-python-3.9
Remove support for python 3.9
2 parents d684e03 + 7104e3d commit 59e1c46

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/build_workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
shell: bash -l {0}
6262
strategy:
6363
matrix:
64-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
64+
python-version: ["3.10", "3.11", "3.12", "3.13"]
6565
fail-fast: false
6666
steps:
6767
- id: skip_check

conda/meta.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ build:
1414

1515
requirements:
1616
host:
17-
- python >=3.9
17+
- python >=3.10
1818
- pip
1919
- setuptools >=60
2020
run:
21-
- python >=3.9
21+
- python >=3.10
2222
- importlib_resources
2323
- jinja2
2424
- lxml

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,9 @@ authors = [
88
description = "A package for providing configuration data related to E3SM supported machines."
99
license = {file = "LICENSE"}
1010
readme = "README.md"
11-
requires-python = ">=3.9"
11+
requires-python = ">=3.10"
1212
classifiers = [
1313
# these are only for searching/browsing projects on PyPI
14-
"Programming Language :: Python :: 3.9",
1514
"Programming Language :: Python :: 3.10",
1615
"Programming Language :: Python :: 3.11",
1716
"Programming Language :: Python :: 3.12",

0 commit comments

Comments
 (0)