Skip to content
Draft
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
8 changes: 7 additions & 1 deletion .github/workflows/build-usearch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,13 @@ jobs:
yum install -y --disablerepo=extras glibc-devel wget python3-devel libstdc++-static
# numpy has no riscv64 wheel on public PyPI yet; numkong and cmake
# already publish one there, so only numpy needs our registry.
CIBW_ENVIRONMENT: PIP_EXTRA_INDEX_URL=https://pypi.riseproject.dev/simple/
# PIP_PREFER_BINARY (gotcha 354) keeps an unpinned numpy build
# requirement from racing a same-day PyPI release that our own
# riscv64 wheel hasn't been published for yet, which otherwise
# falls back to a from-source build that ICEs the manylinux gcc.
CIBW_ENVIRONMENT: >-
PIP_EXTRA_INDEX_URL=https://pypi.riseproject.dev/simple/
PIP_PREFER_BINARY=1
# Upstream disables cibuildwheel's own test step (pyproject.toml:
# "everything is happening in a super slow container" / tests run in
# prerelease.yml instead) - run that suite here since it's the only
Expand Down
1 change: 1 addition & 0 deletions docs/packages/usearch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ versions:
gpl-sources:
filename: gpl-sources.tar
description: gcc
- version: 2.26.2
Loading