Skip to content

Commit 372acd8

Browse files
authored
Chore: Drop support for python 3.7 (#723)
1 parent 31be0f9 commit 372acd8

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
fail-fast: false
8888
matrix:
8989
os: [ubuntu-latest, windows-latest, macos-latest]
90-
python-version: ["3.7", "3.8", "3.9", "3.10", "pypy3.9"]
90+
python-version: ["3.8", "3.9", "3.10", "pypy3.9"]
9191
include:
9292
- os: ubuntu-latest
9393
python-version: "3.10"
@@ -163,7 +163,7 @@ jobs:
163163
strategy:
164164
fail-fast: false
165165
matrix:
166-
python-version: ["3.7", "3.8", "3.9", "3.10", "pypy3.9"]
166+
python-version: ["3.8", "3.9", "3.10", "pypy3.9"]
167167
include:
168168
- python-version: "3.10"
169169
with-coverage: true
@@ -233,7 +233,7 @@ jobs:
233233
strategy:
234234
fail-fast: false
235235
matrix:
236-
python-version: ["3.7", "3.8", "3.9", "3.10", "pypy3.9"]
236+
python-version: ["3.8", "3.9", "3.10", "pypy3.9"]
237237
include:
238238
- python-version: 3.11-dev
239239
tox-env: devel

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ name = "pytest-html"
1010
description = "pytest plugin for generating HTML reports"
1111
readme = "README.rst"
1212
license = "MPL-2.0"
13-
requires-python = ">=3.7"
13+
requires-python = ">=3.8"
1414
keywords = [
1515
"pytest",
1616
"html",
@@ -29,7 +29,6 @@ classifiers = [
2929
"Operating System :: POSIX",
3030
"Operating System :: Microsoft :: Windows",
3131
"Operating System :: MacOS :: MacOS X",
32-
"Programming Language :: Python :: 3.7",
3332
"Programming Language :: Python :: 3.8",
3433
"Programming Language :: Python :: 3.9",
3534
"Programming Language :: Python :: 3.10",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = {3.7, 3.8, 3.9, 3.10, 3.10-cov, pypy3.9}, docs, linting
7+
envlist = {3.8, 3.9, 3.10, 3.10-cov, pypy3.9}, docs, linting
88
isolated_build = True
99

1010
[testenv]

0 commit comments

Comments
 (0)