Skip to content

Commit 688bef9

Browse files
authored
Add support for Python 3.14 and enable colour help (#129)
1 parent 9c97dd9 commit 688bef9

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
# when adding new versions, update the one used to test
21-
# friend projects below to the latest one
22-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
21+
# friend projects below to the latest stable
22+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
2323
os: [ubuntu-latest, macos-latest, windows-latest]
2424
test-set: [base]
2525
include:

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ classifiers = [
2626
"Programming Language :: Python :: 3.11",
2727
"Programming Language :: Python :: 3.12",
2828
"Programming Language :: Python :: 3.13",
29+
"Programming Language :: Python :: 3.14",
2930
"Topic :: Documentation :: Sphinx",
3031
]
3132
dynamic = [

sphinxlint/cli.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ def parse_args(argv=None):
2727
if argv is None:
2828
argv = sys.argv
2929
parser = argparse.ArgumentParser(description=__doc__)
30+
parser.color = True
3031

3132
enabled_checkers_names = {
3233
checker.name for checker in all_checkers.values() if checker.enabled

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires =
33
tox>=4.2
44
env_list =
55
lint
6-
py{py3, 313, 312, 311, 310, 39}
6+
py{py3, 314, 313, 312, 311, 310, 39}
77

88
[testenv]
99
extras =

0 commit comments

Comments
 (0)