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
6 changes: 4 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,20 @@ jobs:
unittest:
runs-on: blacksmith-4vcpu-ubuntu-2204
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
steps:
- name: Install system packages
run: sudo apt update && sudo apt-get install libcurl4-openssl-dev libssl-dev
- name: Check out code from GitHub
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
id: python
uses: actions/setup-python@main
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install dependencies
run: pip install --upgrade pip setuptools wheel tox tox-gh-actions tox-docker
- name: Run unittest
Expand Down
2 changes: 1 addition & 1 deletion billiard/compat.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def spawnv_passfds(path, args, passfds):
if sys.version_info >= (3, 9):
args.extend((None, None, None, -1)) # group, extra_groups, user, umask
args.append(None) # preexec_fn
if sys.version_info >= (3, 11):
if (3, 11) <= sys.version_info < (3, 14):
args.append(subprocess._USE_VFORK)
return _posixsubprocess.fork_exec(*args)
finally:
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
requires =
tox-gh-actions
envlist = {3.8,3.9,3.10,3.11,3.12,3.13}-unit
envlist = {3.8,3.9,3.10,3.11,3.12,3.13,3.14}-unit
skip_missing_interpreters = True

[gh-actions]
Expand All @@ -12,6 +12,7 @@ python =
3.11: 3.11-unit
3.12: 3.12-unit
3.13: 3.13-unit
3.14: 3.14-unit

[testenv]
distribute = True
Expand Down