Skip to content

Commit 14677c4

Browse files
committed
Drop python 3.7
1 parent 262f486 commit 14677c4

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
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)