Skip to content

Commit ed716bf

Browse files
committed
Bump version and test on Python 3.14
1 parent a1a36e4 commit ed716bf

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
matrix:
99
python-version:
10-
- "3.12"
10+
- "3.14"
1111
steps:
1212
- uses: "actions/checkout@master"
1313
- name: "🐍 Set up Python ${{ matrix.python-version }}"
@@ -36,6 +36,7 @@ jobs:
3636
- "3.11"
3737
- "3.12"
3838
- "3.13"
39+
- "3.14"
3940
dependencies:
4041
- ""
4142
- "colorama"
@@ -62,7 +63,7 @@ jobs:
6263
strategy:
6364
matrix:
6465
python-version:
65-
- "3.10"
66+
- "3.14"
6667
steps:
6768
- uses: "actions/checkout@master"
6869
- name: "🐍 Set up Python ${{ matrix.python-version }}"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ Tests similar to the above examples are found in `tests/test_colorlog.py`.
213213
## Status
214214

215215
colorlog is in maintenance mode. I try and ensure bugfixes are published,
216-
but compatibility with Python 2.6+ and Python 3+ makes this a difficult
216+
but compatibility a wide set of Python versions makes this a difficult
217217
codebase to add features to. Any changes that might break backwards
218218
compatibility for existing users will not be considered.
219219

@@ -233,7 +233,7 @@ Some early adopters included [Errbot], [Pythran], and [zenlog].
233233

234234
## Licence
235235

236-
Copyright (c) 2012-2021 Sam Clements <sam@borntyping.co.uk>
236+
Copyright (c) 2012-2025 Sam Clements <sam@borntyping.co.uk>
237237

238238
Permission is hereby granted, free of charge, to any person obtaining a copy of
239239
this software and associated documentation files (the "Software"), to deal in

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="colorlog",
5-
version="6.9.0",
5+
version="6.10.0",
66
description="Add colours to the output of Python's logging module.",
77
long_description=open("README.md").read(),
88
long_description_content_type="text/markdown",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = black,flake8,mypy,py38,py39,py310,py311,py312,py313
2+
envlist = black,flake8,mypy,py38,py39,py310,py311,py312,py313,py314
33

44
[testenv]
55
deps = pytest

0 commit comments

Comments
 (0)