Skip to content

Commit 5f0c2a1

Browse files
Test on Python 3.14
1 parent 383151e commit 5f0c2a1

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ jobs:
2727
- '3.11'
2828
- '3.12'
2929
- '3.13'
30+
- '3.14'
3031
runs-on: ${{ matrix.os }}
3132

3233
name: ${{ matrix.os }}, Python ${{ matrix.python-version }}
@@ -37,6 +38,7 @@ jobs:
3738
uses: actions/setup-python@v6
3839
with:
3940
python-version: ${{ matrix.python-version }}
41+
allow-prereleases: true
4042

4143
- uses: astral-sh/setup-uv@v6
4244

@@ -58,7 +60,7 @@ jobs:
5860

5961
- name: Run tests with PyTest 6
6062
run: tox
61-
if: runner.os != 'Windows'
63+
if: runner.os != 'Windows' && matrix.python-version != '3.14'
6264
env:
6365
PYTEST_MAJOR_VERSION: 6
6466
PYTEST_PLUGINS: pytest_github_actions_annotate_failures

CHANGELOG.md

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

33
## Unreleased
44

5-
Nothing yet.
5+
- Test on Python 3.14 #115
66

77
## 0.3.0 (2025-01-17)
88

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ classifiers = [
3131
"Programming Language :: Python :: 3.11",
3232
"Programming Language :: Python :: 3.12",
3333
"Programming Language :: Python :: 3.13",
34+
"Programming Language :: Python :: 3.14",
3435
"Programming Language :: Python :: 3 :: Only",
3536
"Programming Language :: Python",
3637
"Topic :: System :: Systems Administration",

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{38,39,310,311,312,313}-pytest{6,7,8}
3+
py{38,39,310,311,312,313,314}-pytest{6,7,8}
44

55
[gh-actions]
66
python =
@@ -10,6 +10,7 @@ python =
1010
3.11: py311
1111
3.12: py312
1212
3.13: py313
13+
3.14: py314
1314

1415
[gh-actions:env]
1516
PYTEST_MAJOR_VERSION =

0 commit comments

Comments
 (0)