From 372acd87f06e4d52171d47a1a5f561cf3351d676 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jim=20Br=C3=A4nnlund?= Date: Fri, 1 Sep 2023 11:15:56 +0200 Subject: [PATCH] Chore: Drop support for python 3.7 (#723) --- .github/workflows/tests.yml | 6 +++--- pyproject.toml | 3 +-- tox.ini | 2 +- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 124bf264..56e2671e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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" @@ -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 @@ -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 diff --git a/pyproject.toml b/pyproject.toml index 9bd04733..b193c948 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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", @@ -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", diff --git a/tox.ini b/tox.ini index b096b0b5..fdd89219 100644 --- a/tox.ini +++ b/tox.ini @@ -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]