Skip to content
Merged
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
5 changes: 4 additions & 1 deletion docker/set-python-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ PYTHON_VERSION=${1}
function parse_version {
local version=${1}

if [[ ${version} == 3.13* ]]
if [[ ${version} == 3.14* ]]
then
echo "cp314-cp314"
elif [[ ${version} == 3.13* ]]
then
echo "cp313-cp313"
elif [[ ${version} == 3.12* ]]
Expand Down
5 changes: 4 additions & 1 deletion tests/test_firehose.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ def _ensure_timeout(f, timeout=3):
# This test is useful, so if you know how to fix this under e.g. Windows, let's
# fix it!
if platform == "linux" or platform == "linux2":
p = multiprocessing.Process(target=f)
# way of starting process on Linux changed in python 3.14 from fork to forkserver: https://github.com/python/cpython/issues/84559
# to keep this test working on newer python versions we specify the "fork" method explicitly
Comment on lines +27 to +28
Copy link

Copilot AI Oct 15, 2025

Choose a reason for hiding this comment

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

Corrected spelling of 'OS'es' to 'OSes' in the comment.

Copilot uses AI. Check for mistakes.
ctx = multiprocessing.get_context("fork")
p = ctx.Process(target=f)
p.start()

p.join(timeout)
Expand Down