Skip to content

Commit 39afed4

Browse files
committed
add python 3.14
1 parent 320d3f4 commit 39afed4

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
- '3.8'
1919
- '3.9'
2020
- '3.13'
21+
- '3.14'
2122
- 'pypy-3.7'
2223
- 'pypy-3.8'
2324
- 'pypy-3.9'

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 :: Implementation :: CPython',
3536
'Programming Language :: Python :: Implementation :: PyPy',
3637
'Topic :: File Formats :: JSON',

tests/test_patch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def test_patch(name):
2929

3030

3131
def test_incorrect_diff_type():
32-
with pytest.raises(TypeError, match='is not iterable'):
32+
with pytest.raises(TypeError):
3333
Patcher().patch(None, None)
3434

3535

0 commit comments

Comments
 (0)