Skip to content

Commit a7b2ae5

Browse files
committed
Drop Python 3.8 and Python 3.9 support.
1 parent a55bba7 commit a7b2ae5

File tree

4 files changed

+3
-7
lines changed

4 files changed

+3
-7
lines changed

.github/workflows/test-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
platform: [ubuntu-latest, macos-latest, windows-latest]
18-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', pypy-3.8', 'pypy-3.9']
18+
python-version: ['3.10', '3.11', '3.12', '3.13', pypy-3.10']
1919

2020
steps:
2121

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ repos:
66
rev: v3.16.0
77
hooks:
88
- id: pyupgrade
9-
args: ["--py38-plus"]
9+
args: ["--py310-plus"]
1010

1111
- repo: https://github.com/frostming/fix-future-annotations
1212
rev: 0.5.0

pyproject.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ classifiers = [
3434
"Natural Language :: English",
3535
"Operating System :: OS Independent",
3636
"Programming Language :: Python :: 3",
37-
"Programming Language :: Python :: 3.8",
38-
"Programming Language :: Python :: 3.9",
3937
"Programming Language :: Python :: 3.10",
4038
"Programming Language :: Python :: 3.11",
4139
"Programming Language :: Python :: 3.12",

tox.ini

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
[tox]
22
envlist =
3-
py{38,39,310,311,312,313},
3+
py{310,311,312,313},
44

55
[testenv]
66
basepython =
7-
py38: python3.8
8-
py39: python3.9
97
py310: python3.10
108
py311: python3.11
119
py312: python3.12

0 commit comments

Comments
 (0)