Skip to content

Commit

Permalink
py38-abi
Browse files Browse the repository at this point in the history
  • Loading branch information
marsupialtail committed Feb 14, 2024
1 parent de07856 commit 7a4cf29
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,10 @@ jobs:
- name: Build with Maturin
run: |
rustup default stable
maturin build --release --features py
maturin build --release --features py --out dist
- uses: actions/upload-artifact@v2
with:
name: wheels
path: dist/*

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ py = ["dep:pyo3", "pyarrow"]
pyarrow = ["arrow/pyarrow"]

[dependencies]
pyo3 = { version = "0.20.0", features = ["extension-module"], optional = true }
pyo3 = { version = "0.20.0", features = ["extension-module", "abi3", "abi3-py38"], optional = true }
arrow = { version = "50.0.0", default-features = false }
tantivy = "0.21.1"
tantivy-jieba = "0.10.0"
Expand Down

0 comments on commit 7a4cf29

Please sign in to comment.