Skip to content

Commit

Permalink
build: try with UNSAFE_PYO3_BUILD_FREE_THREADED=1
Browse files Browse the repository at this point in the history
  • Loading branch information
tshauck committed Dec 21, 2024
1 parent 5243f6a commit 9e65712
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ jobs:
- name: Build wheels (x86_64)
if: matrix.target == 'x86_64'
uses: PyO3/maturin-action@v1
env:
UNSAFE_PYO3_BUILD_FREE_THREADED: '1'
with:
target: ${{ matrix.target }}
args: --release --out dist --find-interpreter
Expand All @@ -71,6 +73,8 @@ jobs:
- name: Build wheels (aarch64)
if: matrix.target == 'aarch64'
uses: PyO3/maturin-action@v1
env:
UNSAFE_PYO3_BUILD_FREE_THREADED: '1'
with:
target: ${{ matrix.target }}
args: --release --out dist --find-interpreter
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ crate-type = ["cdylib"]
name = "biobear"

[dependencies]
arrow = { version = "53.3.0", features = ["pyarrow"] }
arrow = { version = "53.3", features = ["pyarrow"] }
datafusion = "43"
exon = { version = "0.32.4", features = ["default"] }
pyo3 = "0.22.2"
pyo3 = "0.22"
tokio = { version = "1", features = ["rt"] }
noodles = { version = "0.86", features = ["core"] }

Expand Down

0 comments on commit 9e65712

Please sign in to comment.