Skip to content

Commit 7cc96fb

Browse files
committed
test: test against CPython 3.14
1 parent cf1c116 commit 7cc96fb

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
- "3.11"
2424
- "3.12"
2525
- "3.13"
26+
- "3.14"
2627
- "pypy-3.9"
2728
- "pypy-3.10"
2829
- "pypy-3.11"
@@ -54,7 +55,7 @@ jobs:
5455
- name: Setup Python
5556
uses: actions/setup-python@v5
5657
with:
57-
python-version: "3.13"
58+
python-version: "3.14"
5859
- name: Install dependencies
5960
run: pip install tox
6061
- name: Run ${{ matrix.env }}

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ For the purpose of determining breaking changes:
2121
### :house: Internal
2222

2323
- Update license metadata as per [PEP 639](https://peps.python.org/pep-0639)
24-
- Add tests for PyPy 3.11
24+
- Add tests for CPython 3.14 and PyPy 3.11
25+
- Use CPython 3.14 for misc. tests
2526
- Upgrade dev dependencies
2627

2728
## [1.1.0] - 2024-10-10

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ classifiers = [
1818
"Programming Language :: Python :: 3.11",
1919
"Programming Language :: Python :: 3.12",
2020
"Programming Language :: Python :: 3.13",
21+
"Programming Language :: Python :: 3.14",
2122
"Topic :: Utilities",
2223
"Topic :: Text Processing :: Markup :: XML",
2324
]
@@ -84,7 +85,7 @@ ignore_missing_imports = false
8485
follow_imports = "normal"
8586
mypy_path = "stubs"
8687
# Platform configuration
87-
python_version = "3.13"
88+
python_version = "3.14"
8889
# Disallow dynamic typing
8990
disallow_any_unimported = true
9091
disallow_any_decorated = true

tox.ini

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

33
[tox]
44
envlist =
5-
py, py39, py310, py311, py312, py313, pypy3
5+
py, py39, py310, py311, py312, py313, py314, pypy3
66
build, docs, lint, type
77

88
[testenv]

0 commit comments

Comments
 (0)