Skip to content
Merged
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
6 changes: 6 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,12 @@ jobs:
target: ${{ matrix.target }}
args: --release --out dist --interpreter 3.10 3.11 3.12 3.13
manylinux: ${{ matrix.manylinux }}
before-script-linux: |
# Fix ring crate cross-compilation for aarch64
# The manylinux cross-compiler doesn't set __ARM_ARCH by default
if [ "$(uname -m)" != "aarch64" ]; then
export CFLAGS_aarch64_unknown_linux_gnu="-march=armv8-a"
fi

- name: Upload wheels
uses: actions/upload-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "googer"
version = "0.2.2"
version = "0.2.3"
edition = "2021"
description = "A powerful, type-safe Google Search library for Python — powered by Rust."
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "googer"
version = "0.2.2"
version = "0.2.3"
description = "A powerful, type-safe Google Search library for Python — powered by Rust."
readme = "README.md"
requires-python = ">=3.10"
Expand Down
Loading