Skip to content

Commit 6ab884d

Browse files
committed
Drop support for EOL Python 3.8
1 parent e4a54cf commit 6ab884d

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: CI
22

3-
on: [push, pull_request]
3+
on: [push, pull_request, workflow_dispatch]
44

55
jobs:
66
Windows:
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14', '3.14t']
12+
python: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14', '3.14t']
1313

1414
steps:
1515
- name: Checkout
@@ -35,7 +35,7 @@ jobs:
3535
strategy:
3636
fail-fast: false
3737
matrix:
38-
python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14', '3.14t']
38+
python: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14', '3.14t']
3939
check_formatting: ['0']
4040
extra_name: ['']
4141
include:
@@ -53,7 +53,7 @@ jobs:
5353
cache: pip
5454
cache-dependency-path: test-requirements.txt
5555
- name: Setup Python (dev)
56-
uses: deadsnakes/action@v3.0.1
56+
uses: deadsnakes/action@v3.2.0
5757
if: endsWith(matrix.python, '-dev')
5858
with:
5959
python-version: '${{ matrix.python }}'
@@ -71,7 +71,7 @@ jobs:
7171
strategy:
7272
fail-fast: false
7373
matrix:
74-
python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14', '3.14t']
74+
python: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14', '3.14t']
7575
steps:
7676
- name: Checkout
7777
uses: actions/checkout@v6

.readthedocs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
version: 2
33

44
build:
5-
os: ubuntu-22.04
5+
os: ubuntu-24.04
66
tools:
7-
python: "3.8"
7+
python: "3.13"
88

99
formats:
1010
- htmlzip

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.7"
29+
requires-python = ">= 3.9"
3030
dynamic = ["version"]
3131

3232
[project.urls]

0 commit comments

Comments
 (0)