Skip to content

Commit 6bec804

Browse files
committed
Drop support for EOL Python 3.7 and 3.8
1 parent 5a1748a commit 6bec804

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
12+
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
1313

1414
steps:
1515
- name: Checkout
@@ -35,7 +35,7 @@ jobs:
3535
strategy:
3636
fail-fast: false
3737
matrix:
38-
python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
38+
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
3939
check_formatting: ['0']
4040
extra_name: ['']
4141
include:
@@ -71,7 +71,7 @@ jobs:
7171
strategy:
7272
fail-fast: false
7373
matrix:
74-
python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
74+
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
7575
steps:
7676
- name: Checkout
7777
uses: actions/checkout@v4

.readthedocs.yml

+2-2
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

+1-1
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)