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
2 changes: 1 addition & 1 deletion .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -728,6 +728,7 @@ jobs:
# NOTE: The latest and the lowest supported Pythons are prioritized
# NOTE: to improve the responsiveness. It's nice to see the most
# NOTE: important results first.
- 3.14
- 3.13
- 3.8
- pypy-3.11
Expand All @@ -736,7 +737,6 @@ jobs:
- >-
3.10
- 3.9
- ~3.14.0-0
runner-vm-os:
- ubuntu-24.04-arm
- ubuntu-24.04
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pip-tools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ jobs:
# NOTE: The latest and the lowest supported Pythons are prioritized
# NOTE: to improve the responsiveness. It's nice to see the most
# NOTE: important results first.
- 3.14
- 3.13
- 3.8
- pypy-3.11
Expand All @@ -66,7 +67,6 @@ jobs:
- >-
3.10
- 3.9
- ~3.14.0-0
os:
- ubuntu-24.04-arm
- macOS-15 # arm64
Expand Down
3 changes: 3 additions & 0 deletions docs/changelog-fragments.d/767.contrib.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Tests: copied and adapted Python 3.13 filter warning for Python 3.14, to match
the new syntax.
-- by :user:`mr-c`.
2 changes: 2 additions & 0 deletions docs/changelog-fragments.d/767.doc.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Declared Python version 3.14 as officially supported
-- by :user:`mr-c`.
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: Jython",
Expand Down
2 changes: 2 additions & 0 deletions pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ filterwarnings =
# FIXME: which exposed a possible race condition in test_conn test cleanup.
# Ref: https://github.com/cherrypy/cheroot/issues/734
ignore:Exception ignored in. <function IOBase.__del__:pytest.PytestUnraisableExceptionWarning
# Python 3.14 version of the above
ignore:Exception ignored while calling deallocator <function IOBase.__del__ at:pytest.PytestUnraisableExceptionWarning

# https://docs.pytest.org/en/stable/usage.html#creating-junitxml-format-files
junit_duration_report = call
Expand Down
Loading