Skip to content

Commit b25ea3a

Browse files
committed
Add Python 3.14 to supported list
Signed-off-by: Martin Prpič <martin.prpic@gmail.com>
1 parent 6c07a96 commit b25ea3a

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ jobs:
1212
tox_env: ${{ matrix.tox_env }}
1313
strategy:
1414
matrix:
15-
tox_env: [ py311, py312, py313, lint, check-format, typecheck ]
15+
tox_env: [ py311, py312, py313, py314, lint, check-format, typecheck ]
1616
runs-on: ubuntu-latest

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ classifiers = [
2222
"Programming Language :: Python :: 3.11",
2323
"Programming Language :: Python :: 3.12",
2424
"Programming Language :: Python :: 3.13",
25+
"Programming Language :: Python :: 3.14",
2526
"Topic :: Software Development :: Version Control :: Git",
2627
"Topic :: Text Editors",
2728
]

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{311,312,313}, lint, check-format, typecheck
2+
envlist = py{311,312,313,314}, lint, check-format, typecheck
33

44
[testenv]
55
description = Run tests

0 commit comments

Comments
 (0)