From 7fe088ec7c5ba94d87b23dc3c19244e2993f5110 Mon Sep 17 00:00:00 2001 From: Luke VanderHart Date: Wed, 6 Sep 2023 14:09:15 -0400 Subject: [PATCH 1/2] configure native build correctly in cibuildwheel --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b92afbd4..1350033e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,7 +29,8 @@ jobs: - name: Build wheels run: python -m cibuildwheel --output-dir dist env: - HNSWLIB_NO_NATIVE: true + CIBW_ENVIRONMENT: HNSWLIB_NO_NATIVE=true + CIBW_ENVIRONMENT_PASS_LINUX: HNSWLIB_NO_NATIVE CIBW_PROJECT_REQUIRES_PYTHON: ">=3.7" CIBW_SKIP: "cp312-* pp* *musllinux*" CIBW_ARCHS_MACOS: "x86_64 arm64" From 69f0c8d87d992cfe7912ed5bb8aaab2f41a5602a Mon Sep 17 00:00:00 2001 From: Luke VanderHart Date: Wed, 6 Sep 2023 14:09:43 -0400 Subject: [PATCH 2/2] bump version to 0.7.3.alpha8 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 23bd4fd6..889b4a46 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ from setuptools import Extension, setup from setuptools.command.build_ext import build_ext -__version__ = '0.7.3.alpha7' +__version__ = '0.7.3.alpha8' include_dirs = [ pybind11.get_include(),