Skip to content

Commit 7d6c58a

Browse files
authored
Drop support for Python 3.9 (#629)
1 parent bd2ea7a commit 7d6c58a

File tree

5 files changed

+10
-11
lines changed

5 files changed

+10
-11
lines changed

.github/workflows/docs-lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
- TOXENV: lint
2020

2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323

2424
- name: Set up Python
25-
uses: actions/setup-python@v5
25+
uses: actions/setup-python@v6
2626
with:
2727
python-version: "3.x"
2828
cache: pip

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919
with:
2020
fetch-depth: 0
2121

2222
- name: Set up Python
23-
uses: actions/setup-python@v5
23+
uses: actions/setup-python@v6
2424
with:
2525
python-version: "3.x"
2626
cache: pip

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
18+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1919
os: [ubuntu-latest, macOS-latest, windows-latest]
2020

2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323

2424
- name: Set up Python ${{ matrix.python-version }}
25-
uses: actions/setup-python@v5
25+
uses: actions/setup-python@v6
2626
with:
2727
python-version: ${{ matrix.python-version }}
2828
allow-prereleases: true
@@ -41,6 +41,6 @@ jobs:
4141
tox -e py
4242
4343
- name: Upload coverage
44-
uses: codecov/codecov-action@v3
44+
uses: codecov/codecov-action@v5
4545
with:
4646
name: ${{ matrix.os }} Python ${{ matrix.python-version }}

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ maintainers = [
1515
{name = "Hugo van Kemenade"},
1616
{name = "Claude Paroz", email = "[email protected]"},
1717
]
18-
requires-python = ">=3.9"
18+
requires-python = ">=3.10"
1919
classifiers = [
2020
"Development Status :: 5 - Production/Stable",
2121
"Intended Audience :: Developers",
@@ -24,7 +24,6 @@ classifiers = [
2424
"Programming Language :: Python",
2525
"Programming Language :: Python :: 3 :: Only",
2626
"Programming Language :: Python :: 3",
27-
"Programming Language :: Python :: 3.9",
2827
"Programming Language :: Python :: 3.10",
2928
"Programming Language :: Python :: 3.11",
3029
"Programming Language :: Python :: 3.12",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ minversion = 2.4
44
envlist =
55
docs
66
lint
7-
py{39,310,311,312,313,314}
7+
py{310,311,312,313,314}
88

99
[testenv]
1010
deps =

0 commit comments

Comments
 (0)