Skip to content

Commit c88cf1c

Browse files
hugovkfacelessuser
authored andcommitted
Drop support for EOL Python 3.7
1 parent a845be9 commit c88cf1c

File tree

4 files changed

+3
-7
lines changed

4 files changed

+3
-7
lines changed

.github/workflows/build.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,8 @@ jobs:
1717
max-parallel: 4
1818
matrix:
1919
platform: [ubuntu-latest, windows-latest]
20-
tox-env: [py37, py38, py39, py310, py311, py312, nolxml, nohtml5lib]
20+
tox-env: [py38, py39, py310, py311, py312, nolxml, nohtml5lib]
2121
include:
22-
- tox-env: py37
23-
python-version: 3.7
24-
continue-on-error: false
2522
- tox-env: py38
2623
python-version: 3.8
2724
continue-on-error: false

hatch_build.py

-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ def update(self, metadata):
4141
'License :: OSI Approved :: MIT License',
4242
'Operating System :: OS Independent',
4343
'Programming Language :: Python :: 3',
44-
'Programming Language :: Python :: 3.7',
4544
'Programming Language :: Python :: 3.8',
4645
'Programming Language :: Python :: 3.9',
4746
'Programming Language :: Python :: 3.10',

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ name = "soupsieve"
99
description = "A modern CSS selector implementation for Beautiful Soup."
1010
readme = "README.md"
1111
license = "MIT"
12-
requires-python = ">=3.7"
12+
requires-python = ">=3.8"
1313
authors = [
1414
{ name = "Isaac Muse", email = "[email protected]" },
1515
]

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
isolated_build = true
33
envlist =
4-
py{37,38,39,310,311,312},
4+
py{38,39,310,311,312},
55
lint, nolxml, nohtml5lib
66

77
[testenv]

0 commit comments

Comments
 (0)