Skip to content

Commit 299adb9

Browse files
Add support for Python 3.14 (#503)
--------- Co-authored-by: Bruno Oliveira <[email protected]>
1 parent f5fcef7 commit 299adb9

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
strategy:
3838
fail-fast: false
3939
matrix:
40-
python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
40+
python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14-dev"]
4141
os: [ubuntu-latest, windows-latest]
4242
tox_env: ["py"]
4343
include:

CHANGELOG.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Releases
22
========
33

4+
UNRELEASED
5+
----------
6+
7+
* `#503 <https://github.com/pytest-dev/pytest-mock/pull/503>`_: Python 3.14 is now officially supported.
8+
49
3.14.0 (2024-03-21)
510
-------------------
611

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ classifiers = [
3333
"Programming Language :: Python :: 3.11",
3434
"Programming Language :: Python :: 3.12",
3535
"Programming Language :: Python :: 3.13",
36+
"Programming Language :: Python :: 3.14",
3637
"Topic :: Software Development :: Testing",
3738
]
3839

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
minversion = 3.5.3
3-
envlist = py{38,39,310,311,312,313}, norewrite, pytest6
3+
envlist = py{38,39,310,311,312,313,314}, norewrite, pytest6
44

55
[testenv]
66
deps =

0 commit comments

Comments
 (0)