Skip to content
Merged
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: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-13, macos-14, windows-latest]
os: [ubuntu-latest, macos-15-intel, macos-14, windows-latest]

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -153,9 +153,9 @@ jobs:
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
# Build with all features: pcre2 (default), regexr jit+simd
# Build with python feature (PyO3 bindings) + pcre2 (PCRE2 backend with JIT)
# Note: regexr's SIMD uses runtime detection, JIT is compiled at build time
args: --release --out dist --features pcre2
args: --release --out dist --features python,pcre2
sccache: 'true'
manylinux: auto
env:
Expand Down
Loading