Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: mark awkward as freedthread safe with pybind11 #3396

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
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
Next Next commit
fix: mark awkward as freedthread safe with pybind11
  • Loading branch information
lgray authored Feb 7, 2025
commit 3d7a22b0f1e7693bcba173cf832131c6e991888c
2 changes: 1 addition & 1 deletion awkward-cpp/src/python/_ext.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include "awkward/python/forth.h"

namespace py = pybind11;
PYBIND11_MODULE(_ext, m) {
PYBIND11_MODULE(_ext, m, py::mod_gil_not_used()) {
#ifdef VERSION_INFO
m.attr("__version__") = VERSION_INFO;
#else
Expand Down
Loading