Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
0.26.3
------

* Added Python 3.14 support (classifiers, tox envlist, and CI test matrix). See #810
* Added a ``keep_headers`` argument to ``_recorder.record`` and
``Recorder.dump_to_file`` to preserve named headers (for example ``Date``)
that are otherwise stripped as verbose defaults, so a signed response can be
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development",
],
)
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py38,py39,py310,py311,py312,py313,mypy,precom
envlist = py38,py39,py310,py311,py312,py313,py314,mypy,precom

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

also need to enable it in CI

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks — added a CHANGES entry for 3.14. tox already has py314; I also tried to add 3.14 to .github/workflows/ci.yml but this token cannot update workflow files. A maintainer with workflow scope will need to add '3.14' to the test matrix there.


[pytest]
filterwarnings =
Expand Down