Skip to content

Commit 4f71720

Browse files
authored
chore: Drop testing of python 3.8 (incomplete) (#1712)
1 parent 31eabe8 commit 4f71720

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/pytest.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
matrix:
1919
# "3.10" must be a string; otherwise it is interpreted as 3.1.
20-
python-version: ["3.12", "3.11", "3.10", "3.9", "3.8"]
20+
python-version: ["3.12", "3.11", "3.10", "3.9"]
2121
os: [ubuntu-latest, windows-latest, macOS-latest]
2222
exclude:
2323
- python-version: ${{ github.event.pull_request.draft && '3.11' }}
@@ -108,7 +108,7 @@ jobs:
108108
runs-on: ubuntu-latest
109109
strategy:
110110
matrix:
111-
python-version: ["3.12", "3.11", "3.10", "3.9", "3.8"]
111+
python-version: ["3.12", "3.11", "3.10", "3.9"]
112112
browser: ["chromium", "firefox", "webkit"]
113113
exclude:
114114
- python-version: ${{ github.event.pull_request.draft && '3.11' }}
@@ -158,7 +158,7 @@ jobs:
158158
runs-on: ubuntu-20.04
159159
strategy:
160160
matrix:
161-
python-version: ["3.12", "3.11", "3.10", "3.9", "3.8"]
161+
python-version: ["3.12", "3.11", "3.10", "3.9"]
162162
browser: ["chromium", "firefox", "webkit"]
163163
exclude:
164164
- python-version: ${{ github.event.pull_request.draft && '3.11' }}

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,13 @@ dynamic = ["version"]
1515
authors = [{ name = "Winston Chang", email = "[email protected]" }]
1616
description = "A web development framework for Python."
1717
readme = "README.md"
18-
requires-python = ">=3.8"
18+
requires-python = ">=3.9"
1919
license = { text = "MIT" }
2020
classifiers = [
2121
"Development Status :: 5 - Production/Stable",
2222
"Intended Audience :: Developers",
2323
"License :: OSI Approved :: MIT License",
2424
"Natural Language :: English",
25-
"Programming Language :: Python :: 3.8",
2625
"Programming Language :: Python :: 3.9",
2726
"Programming Language :: Python :: 3.10",
2827
"Programming Language :: Python :: 3.11",

0 commit comments

Comments
 (0)