Skip to content

Commit aa21a41

Browse files
authored
Remove support for python 3.9 (#140)
1 parent 73876d4 commit aa21a41

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
TOX_PARALLEL_NO_SPINNER: 1
1919

2020
steps:
21-
- name: Switch to using Python 3.8 by default
21+
- name: Switch to using Python 3.9 by default
2222
uses: actions/setup-python@v5
2323
with:
24-
python-version: 3.8
24+
python-version: 3.9
2525

2626
- name: Install tox
2727
run: python3 -m pip install --user tox

.github/workflows/tox.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
id: generate_matrix
2020
uses: coactions/dynamic-matrix@v1
2121
with:
22+
min_python: "3.9"
2223
other_names: |
2324
lint
2425
docs

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"
88

99
[project]
1010
# https://peps.python.org/pep-0621/#readme
11-
requires-python = ">=3.8"
11+
requires-python = ">=3.9"
1212
dynamic = ["version"]
1313

1414
name = "subprocess-tee"
@@ -34,7 +34,6 @@ classifiers = [
3434
"Operating System :: POSIX :: Linux",
3535
"Operating System :: POSIX",
3636
"Programming Language :: Python :: 3",
37-
"Programming Language :: Python :: 3.8",
3837
"Programming Language :: Python :: 3.9",
3938
"Programming Language :: Python :: 3.10",
4039
"Programming Language :: Python :: 3.11",
@@ -79,7 +78,7 @@ profile = "black"
7978
known_first_party = "subprocess_tee"
8079

8180
[tool.mypy]
82-
python_version = 3.8
81+
python_version = "3.9"
8382
color_output = true
8483
error_summary = true
8584
disallow_any_generics = true

0 commit comments

Comments
 (0)