Skip to content

Commit

Permalink
Chore: Drop support for python 3.7 (pytest-dev#723)
Browse files Browse the repository at this point in the history
  • Loading branch information
BeyondEvil authored Sep 1, 2023
1 parent 31be0f9 commit 372acd8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "pypy3.9"]
python-version: ["3.8", "3.9", "3.10", "pypy3.9"]
include:
- os: ubuntu-latest
python-version: "3.10"
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "pypy3.9"]
python-version: ["3.8", "3.9", "3.10", "pypy3.9"]
include:
- python-version: "3.10"
with-coverage: true
Expand Down Expand Up @@ -233,7 +233,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "pypy3.9"]
python-version: ["3.8", "3.9", "3.10", "pypy3.9"]
include:
- python-version: 3.11-dev
tox-env: devel
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ name = "pytest-html"
description = "pytest plugin for generating HTML reports"
readme = "README.rst"
license = "MPL-2.0"
requires-python = ">=3.7"
requires-python = ">=3.8"
keywords = [
"pytest",
"html",
Expand All @@ -29,7 +29,6 @@ classifiers = [
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"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 tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

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

[testenv]
Expand Down

0 comments on commit 372acd8

Please sign in to comment.