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-bazel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
# Keep in sync with python.yml.
ver: ['3.10', '3.11', '3.12', '3.13', '3.14']
ver: ['3.10', '3.11', '3.12', '3.13', '3.14', '3.14t']
steps:
- uses: actions/checkout@v4.2.2
- uses: bazel-contrib/setup-bazel@0.15.0
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
os: [manylinux_2_28]
# Keep in sync with ci-bazel.yml and list below.
# Also, when bumping the minimum version, update ../../python/setup.py.
ver: ['3.10', '3.11', '3.12', '3.13', '3.14']
ver: ['3.10', '3.11', '3.12', '3.13', '3.14', '3.14t']
env:
BAZELISK_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PYTHON: /usr/local/bin/python${{ matrix.ver }}
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
# TODO(rsc): Stop cross-compiling now that we don't use macOS 12.
# instead, specify `-large` suffix on X64 and `-xlarge` suffix on ARM64.
os: [13, 14, 15, 26]
ver: ['3.10', '3.11', '3.12', '3.13', '3.14']
ver: ['3.10', '3.11', '3.12', '3.13', '3.14', '3.14t']
env:
BAZELISK_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BAZEL_CPU: darwin_${{ matrix.arch.bazel-name }}
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
- { name: X86, bazel-name: x64_x86, python-name: win32 }
- { name: X64, bazel-name: x64, python-name: win_amd64 }
- { name: ARM64, bazel-name: arm64, python-name: win_arm64 }
ver: ['3.10', '3.11', '3.12', '3.13', '3.14']
ver: ['3.10', '3.11', '3.12', '3.13', '3.14', '3.14t']
exclude:
- arch: { name: ARM64, bazel-name: arm64, python-name: win_arm64 }
ver: '3.9'
Expand Down
2 changes: 1 addition & 1 deletion python/_re2.cc
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ class Filter {
std::unique_ptr<RE2::Set> set_;
};

PYBIND11_MODULE(_re2, module) {
PYBIND11_MODULE(_re2, module, py::mod_gil_not_used()) {
// Translate exceptions thrown by py::pybind11_fail() into Python.
py::register_local_exception<std::runtime_error>(module, "Error");

Expand Down