Skip to content

Commit d1ddb05

Browse files
authored
Drop support for Python 3.7 (#95)
1 parent 66aa2d5 commit d1ddb05

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
17+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1818

1919
steps:
2020
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dynamic = ["version"]
88
description = "A streaming multipart parser for Python"
99
readme = "README.rst"
1010
license = "Apache-2.0"
11-
requires-python = ">=3.7"
11+
requires-python = ">=3.8"
1212
authors = [{ name = "Andrew Dunham", email = "[email protected]" }]
1313
classifiers = [
1414
'Development Status :: 5 - Production/Stable',
@@ -18,7 +18,6 @@ classifiers = [
1818
'Operating System :: OS Independent',
1919
'Programming Language :: Python :: 3 :: Only',
2020
'Programming Language :: Python :: 3',
21-
'Programming Language :: Python :: 3.7',
2221
'Programming Language :: Python :: 3.8',
2322
'Programming Language :: Python :: 3.9',
2423
'Programming Language :: Python :: 3.10',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py37,py38,py39,py310,py311,py312
2+
envlist = py38,py39,py310,py311,py312
33

44
[testenv]
55
deps=

0 commit comments

Comments
 (0)