Skip to content

Commit

Permalink
Drop support for EOL Python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk authored and facelessuser committed Aug 31, 2023
1 parent a845be9 commit c88cf1c
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 7 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,8 @@ jobs:
max-parallel: 4
matrix:
platform: [ubuntu-latest, windows-latest]
tox-env: [py37, py38, py39, py310, py311, py312, nolxml, nohtml5lib]
tox-env: [py38, py39, py310, py311, py312, nolxml, nohtml5lib]
include:
- tox-env: py37
python-version: 3.7
continue-on-error: false
- tox-env: py38
python-version: 3.8
continue-on-error: false
Expand Down
1 change: 0 additions & 1 deletion hatch_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ def update(self, metadata):
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ name = "soupsieve"
description = "A modern CSS selector implementation for Beautiful Soup."
readme = "README.md"
license = "MIT"
requires-python = ">=3.7"
requires-python = ">=3.8"
authors = [
{ name = "Isaac Muse", email = "[email protected]" },
]
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
isolated_build = true
envlist =
py{37,38,39,310,311,312},
py{38,39,310,311,312},
lint, nolxml, nohtml5lib

[testenv]
Expand Down

0 comments on commit c88cf1c

Please sign in to comment.