From 262f486fb4804fea151523828c0f620949c37b31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jelmer=20Vernoo=C4=B3?= Date: Mon, 10 Jun 2024 13:46:10 +0100 Subject: [PATCH 1/2] Change CI to Ubuntu latest (from 20.04) --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cdca5340..1b4b546c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,7 +4,7 @@ on: [push, pull_request] jobs: build: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest strategy: fail-fast: false matrix: From 14677c4791726461b6597e053a065ad8ad9ec981 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jelmer=20Vernoo=C4=B3?= Date: Mon, 10 Jun 2024 13:48:49 +0100 Subject: [PATCH 2/2] Drop python 3.7 --- .github/workflows/test.yml | 2 +- NEWS | 2 ++ pyproject.toml | 3 +-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1b4b546c..578d9091 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.7, 3.8, 3.9, "3.10", 3.11, 3.12, pypy3.9, pypy3.10] + python-version: [3.8, 3.9, "3.10", 3.11, 3.12, pypy3.9, pypy3.10] steps: - uses: actions/checkout@v4 diff --git a/NEWS b/NEWS index 925f24ff..f8b4a641 100644 --- a/NEWS +++ b/NEWS @@ -20,6 +20,8 @@ Improvements * Deprecate SkippedTest exception. (Stephen Finucane) +* Drop support for Python 3.7. (Jelmer Vernooij) + 2.7.1 ~~~~~ diff --git a/pyproject.toml b/pyproject.toml index 1490ebb2..efa58630 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,7 +27,6 @@ classifiers = [ "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", @@ -42,7 +41,7 @@ classifiers = [ ] dependencies = ["setuptools; python_version>='3.12'"] dynamic = ["version"] -requires-python = ">=3.7" +requires-python = ">=3.8" [project.urls] Homepage = "https://github.com/testing-cabal/testtools"