Skip to content

Commit 39af3f7

Browse files
committed
Drop support for EOL Python 3.8
1 parent 7ede642 commit 39af3f7

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,11 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
python-version: ["pypy-3.8", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
14+
python-version: ["pypy-3.11", "3.9", "3.10", "3.11", "3.12", "3.13"]
1515
os: [ubuntu-latest, macos-latest, windows-latest]
1616
include:
1717
# Add new helper variables to existing jobs
18-
- {python-version: "pypy-3.8", toxenv: "pypy3"}
19-
- {python-version: "3.8", toxenv: "py38"}
18+
- {python-version: "pypy-3.11", toxenv: "pypy3"}
2019
- {python-version: "3.9", toxenv: "py39"}
2120
- {python-version: "3.10", toxenv: "py310"}
2221
- {python-version: "3.11", toxenv: "py311"}

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ If you find Colorama useful, please |donate| to the authors. Thank you!
2929
Installation
3030
------------
3131

32-
Tested on CPython 3.8, 3.9, 3.10, 3.11 and 3.12 and PyPy 3.8.
32+
Tested on CPython 3.9, 3.10, 3.11, 3.12, 3.13 and PyPy 3.11.
3333

3434
No requirements other than the standard library.
3535

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ name = "colorama"
99
description = "Cross-platform colored terminal text."
1010
readme = "README.rst"
1111
license = "BSD-3-Clause"
12-
requires-python = ">=3.8"
12+
requires-python = ">=3.9"
1313
authors = [
1414
{ name = "Jonathan Hartley", email = "[email protected]" },
1515
]
@@ -32,7 +32,6 @@ classifiers = [
3232
"Programming Language :: Python",
3333
"Programming Language :: Python :: 3 :: Only",
3434
"Programming Language :: Python :: 3",
35-
"Programming Language :: Python :: 3.8",
3635
"Programming Language :: Python :: 3.9",
3736
"Programming Language :: Python :: 3.10",
3837
"Programming Language :: Python :: 3.11",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
isolated_build = true
3-
envlist = py{38, 39, 310, 311, 312, 313, py3}
3+
envlist = py{39, 310, 311, 312, 313, py3}
44

55
[testenv]
66
commands = python -m unittest discover -p *_test.py

0 commit comments

Comments
 (0)