Skip to content

Commit e2f61af

Browse files
lgrayariostas
andauthored
fix: mark awkward as freedthread safe with pybind11 (#3396)
* fix: mark awkward as freedthread safe with pybind11 * use Quansight-Labs/setup-python so we can test 3.13t * only run 3.13t with minimal dependencies for tests * set this back to full, we'll still need to fix uproot * Fixed script for nogil * Build nogil awkward-cpp wheels * Fixed test workflow --------- Co-authored-by: Andres Rios Tascon <[email protected]>
1 parent 1f5ef18 commit e2f61af

File tree

5 files changed

+24
-4
lines changed

5 files changed

+24
-4
lines changed

.github/workflows/test.yml

+9-1
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,14 @@ jobs:
6969
python-architecture: x64
7070
runs-on: ubuntu-latest
7171
dependencies-kind: ml
72+
- python-version: '3.13t'
73+
python-architecture: x64
74+
runs-on: ubuntu-latest
75+
dependencies-kind: nogil
76+
- python-version: '3.13t'
77+
python-architecture: x64
78+
runs-on: windows-latest
79+
dependencies-kind: nogil
7280

7381
runs-on: ${{ matrix.runs-on }}
7482

@@ -81,7 +89,7 @@ jobs:
8189
submodules: true
8290

8391
- name: 'Python ${{ matrix.python-version }}'
84-
uses: actions/setup-python@v5
92+
uses: Quansight-Labs/setup-python@v5
8593
with:
8694
python-version: '${{ matrix.python-version }}'
8795
architecture: '${{ matrix.python-architecture }}'

awkward-cpp/pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ cmake.version = ">=3.29"
7777

7878
[tool.cibuildwheel]
7979
build-frontend = "build[uv]"
80+
free-threaded-support = true
8081
test-requires = ["pytest>=6", "."]
8182
test-command = ["echo {project}:", "ls {project}", "echo {package}:", "ls {package}",
8283
"""

awkward-cpp/src/python/_ext.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#include "awkward/python/forth.h"
1010

1111
namespace py = pybind11;
12-
PYBIND11_MODULE(_ext, m) {
12+
PYBIND11_MODULE(_ext, m, py::mod_gil_not_used()) {
1313
#ifdef VERSION_INFO
1414
m.attr("__version__") = VERSION_INFO;
1515
#else

dev/generate-tests.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
import json
88
import os
99
import shutil
10+
import sys
1011
import time
1112
from collections import OrderedDict
1213
from itertools import product
@@ -17,6 +18,11 @@
1718

1819
CURRENT_DIR = os.path.dirname(os.path.realpath(__file__))
1920

21+
try:
22+
yaml_loader = yaml.CSafeLoader if sys._is_gil_enabled() else yaml.SafeLoader
23+
except AttributeError:
24+
yaml_loader = yaml.CSafeLoader
25+
2026

2127
def reproducible_datetime():
2228
import sys
@@ -203,7 +209,7 @@ def readspec():
203209
specdict = {}
204210
specdict_unit = {}
205211
with open(os.path.join(CURRENT_DIR, "..", "kernel-specification.yml")) as f:
206-
loadfile = yaml.load(f, Loader=yaml.CSafeLoader)
212+
loadfile = yaml.load(f, Loader=yaml_loader)
207213

208214
indspec = loadfile["kernels"]
209215
with open(os.path.join(CURRENT_DIR, "..", "kernel-test-data.json")) as f:
@@ -392,7 +398,7 @@ def awkward_ListArray_combinations_step(
392398
with open(
393399
os.path.join(CURRENT_DIR, "..", "kernel-specification.yml")
394400
) as specfile:
395-
indspec = yaml.load(specfile, Loader=yaml.CSafeLoader)["kernels"]
401+
indspec = yaml.load(specfile, Loader=yaml_loader)["kernels"]
396402
for spec in indspec:
397403
if "def " in spec["definition"]:
398404
outfile.write(spec["definition"] + "\n")

requirements-test-nogil.txt

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
fsspec>=2022.11.0;sys_platform != "win32"
2+
pandas>=0.24.0;sys_platform != "win32"
3+
pytest>=6
4+
pytest-cov
5+
pytest-xdist

0 commit comments

Comments
 (0)