Skip to content

Commit 337c9cc

Browse files
committed
Drop support for EOL Python 3.9
1 parent f9b8814 commit 337c9cc

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
12+
python: ['3.10', '3.11', '3.12', '3.13', '3.14']
1313

1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
- name: Setup python
18-
uses: actions/setup-python@v5
18+
uses: actions/setup-python@v6
1919
with:
2020
python-version: ${{ matrix.python }}
2121
allow-prereleases: true
@@ -35,7 +35,7 @@ jobs:
3535
strategy:
3636
fail-fast: false
3737
matrix:
38-
python: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
38+
python: ['3.10', '3.11', '3.12', '3.13', '3.14']
3939
check_formatting: ['0']
4040
extra_name: ['']
4141
include:
@@ -44,9 +44,9 @@ jobs:
4444
extra_name: ', check formatting'
4545
steps:
4646
- name: Checkout
47-
uses: actions/checkout@v4
47+
uses: actions/checkout@v5
4848
- name: Setup python
49-
uses: actions/setup-python@v5
49+
uses: actions/setup-python@v6
5050
if: "!endsWith(matrix.python, '-dev')"
5151
with:
5252
python-version: ${{ matrix.python }}
@@ -72,12 +72,12 @@ jobs:
7272
strategy:
7373
fail-fast: false
7474
matrix:
75-
python: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
75+
python: ['3.10', '3.11', '3.12', '3.13', '3.14']
7676
steps:
7777
- name: Checkout
78-
uses: actions/checkout@v4
78+
uses: actions/checkout@v5
7979
- name: Setup python
80-
uses: actions/setup-python@v5
80+
uses: actions/setup-python@v6
8181
with:
8282
python-version: ${{ matrix.python }}
8383
allow-prereleases: true

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ classifiers = [
2626
"Intended Audience :: Developers",
2727
"Development Status :: 5 - Production/Stable",
2828
]
29-
requires-python = ">= 3.9"
29+
requires-python = ">= 3.10"
3030
dynamic = ["version"]
3131

3232
[project.urls]

0 commit comments

Comments
 (0)