Skip to content

Commit 0878ac4

Browse files
committed
Drop support for Python 3.8
Signed-off-by: Stephen Finucane <stephen@that.guru>
1 parent 3ae92ab commit 0878ac4

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
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.8, 3.9, "3.10", 3.11, 3.12, pypy3.9, pypy3.10]
11+
python-version: ["3.9", "3.10", "3.11", "3.12", "pypy3.9", "pypy3.10"]
1212

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

NEWS

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@ testtools NEWS
33

44
Changes and improvements to testtools_, grouped by release.
55

6+
2.8.0
7+
~~~~~
8+
9+
Changes
10+
-------
11+
12+
* Drop support for Python 3.8. (Stephen Finucane)
13+
614
2.7.2
715
~~~~~
816

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.8",
3130
"Programming Language :: Python :: 3.9",
3231
"Programming Language :: Python :: 3.10",
3332
"Programming Language :: Python :: 3.11",
@@ -41,7 +40,7 @@ classifiers = [
4140
]
4241
dependencies = ["setuptools; python_version>='3.12'"]
4342
dynamic = ["version"]
44-
requires-python = ">=3.8"
43+
requires-python = ">=3.9"
4544

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

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py37,py38,py39,py310,py311,py312,pypy3
2+
envlist = py39,py310,py311,py312,py313,pypy3
33
minversion = 4.2
44

55
[testenv]

0 commit comments

Comments
 (0)