Skip to content

Commit 8b083d3

Browse files
authored
Merge pull request #380 from testing-cabal/ci-ubuntu-24.04
Change CI to Ubuntu-latest
2 parents 20dc444 + 14677c4 commit 8b083d3

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ on: [push, pull_request]
44

55
jobs:
66
build:
7-
runs-on: ubuntu-20.04
7+
runs-on: ubuntu-latest
88
strategy:
99
fail-fast: false
1010
matrix:
11-
python-version: [3.7, 3.8, 3.9, "3.10", 3.11, 3.12, pypy3.9, pypy3.10]
11+
python-version: [3.8, 3.9, "3.10", 3.11, 3.12, pypy3.9, pypy3.10]
1212

1313
steps:
1414
- uses: actions/checkout@v4

NEWS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ Improvements
2020

2121
* Deprecate SkippedTest exception. (Stephen Finucane)
2222

23+
* Drop support for Python 3.7. (Jelmer Vernooij)
24+
2325
2.7.1
2426
~~~~~
2527

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ classifiers = [
2727
"Operating System :: OS Independent",
2828
"Programming Language :: Python",
2929
"Programming Language :: Python :: 3",
30-
"Programming Language :: Python :: 3.7",
3130
"Programming Language :: Python :: 3.8",
3231
"Programming Language :: Python :: 3.9",
3332
"Programming Language :: Python :: 3.10",
@@ -42,7 +41,7 @@ classifiers = [
4241
]
4342
dependencies = ["setuptools; python_version>='3.12'"]
4443
dynamic = ["version"]
45-
requires-python = ">=3.7"
44+
requires-python = ">=3.8"
4645

4746
[project.urls]
4847
Homepage = "https://github.com/testing-cabal/testtools"

0 commit comments

Comments
 (0)