Skip to content

Commit ae4b09e

Browse files
committed
Update Python version requirements in configuration files to 3.10, removing 3.8 and 3.9 references.
1 parent 39de3cf commit ae4b09e

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
fail-fast: false
3434
matrix:
3535
os: [ubuntu-latest, windows-latest, macos-latest]
36-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
36+
python-version: ["3.10", "3.11", "3.12", "3.13"]
3737

3838
steps:
3939
- uses: actions/checkout@v4

.github/workflows/python-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Set up Python
2727
uses: actions/setup-python@v2
2828
with:
29-
python-version: '3.9'
29+
python-version: '3.10'
3030
- name: Install dependencies
3131
run: |
3232
python -m pip install --upgrade pip

pyproject.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ authors = [{name = "Constantine Evans", email="mixes@mb.costi.net"}]
3636
license = { file = "LICENSE.txt" }
3737
classifiers = [
3838
"Development Status :: 4 - Beta",
39-
"Programming Language :: Python :: 3.8",
40-
"Programming Language :: Python :: 3.9",
4139
"Programming Language :: Python :: 3.10",
4240
"Programming Language :: Python :: 3.11",
4341
"Programming Language :: Python :: 3.12",
@@ -88,7 +86,7 @@ where = ["src"]
8886
target-version = ["py312"]
8987

9088
[tool.mypy]
91-
python_version = "3.9"
89+
python_version = "3.10"
9290
# warn_return_any = true
9391
warn_unused_configs = true
9492
ignore_missing_imports = true
@@ -105,7 +103,7 @@ dependencies = [
105103
name.echo.features = ["echo"]
106104

107105
[[tool.hatch.envs.hatch-test.matrix]]
108-
python = ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
106+
python = ["3.10", "3.11", "3.12", "3.13"]
109107

110108
[[tool.hatch.envs.hatch-test.matrix]]
111109
python = ["3.10", "3.11", "3.12", "3.13"]

0 commit comments

Comments
 (0)