Skip to content

Commit 8aca8f5

Browse files
committed
Python 3.14 support
1 parent 952e6fa commit 8aca8f5

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v4
10-
- name: Set up Python 3.13
10+
- name: Set up Python 3.14
1111
uses: actions/setup-python@v5
1212
with:
13-
python-version: 3.13
13+
python-version: 3.14
1414
- name: Setup and install tools
1515
run: python -m pip install ruff
1616
- name: ruff format check
@@ -23,7 +23,7 @@ jobs:
2323
fail-fast: false
2424
max-parallel: 8
2525
matrix:
26-
python-version: [3.7, 3.13]
26+
python-version: [3.7, 3.14]
2727
os: [ubuntu-22.04, windows-latest, macos-latest]
2828
exclude:
2929
- os: macos-latest

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
66

77
*Stay tuned...*
88

9+
## [v0.18.3]
10+
- Test Python 3.14 support
11+
912
## [v0.18.2]
1013

1114
### Fixed

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ def get_meta(name):
103103
"Programming Language :: Python :: 3.11",
104104
"Programming Language :: Python :: 3.12",
105105
"Programming Language :: Python :: 3.13",
106+
"Programming Language :: Python :: 3.14",
106107
"Programming Language :: Python :: Implementation",
107108
"Topic :: Education :: Testing",
108109
"Topic :: Software Development",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py37,py38,py39,py310,py311,py312,py313
7+
envlist = py37,py38,py39,py310,py311,py312,py313,py314
88

99
[testenv]
1010
commands =

0 commit comments

Comments
 (0)