From 5fd0b6c4a6f39b3f77a7571563a89281a79507e2 Mon Sep 17 00:00:00 2001
From: PrimozGodec
Date: Tue, 25 Apr 2023 16:02:20 +0200
Subject: [PATCH] Use oldest-supported-numpy for build
---
.github/workflows/build-wheels.yml | 4 ++--
pyproject.toml | 8 ++++++++
2 files changed, 10 insertions(+), 2 deletions(-)
create mode 100644 pyproject.toml
diff --git a/.github/workflows/build-wheels.yml b/.github/workflows/build-wheels.yml
index c100a179be..8b4b11f174 100644
--- a/.github/workflows/build-wheels.yml
+++ b/.github/workflows/build-wheels.yml
@@ -40,12 +40,12 @@ jobs:
env:
CIBW_ARCHS_LINUX: x86_64 aarch64
CIBW_ARCHS_MACOS: x86_64 arm64
- CIBW_ARCHS_WINDOWS: AMD64 x86 ARM64
- CIBW_BEFORE_BUILD: pip install numpy scipy
+ CIBW_ARCHS_WINDOWS: AMD64 x86
CIBW_SKIP: pp* cp36-* cp37-* *-win32 *_i686 *-musllinux_*
CIBW_TEST_COMMAND: pytest -rfxEXs --durations=20 --disable-warnings --showlocals --pyargs gensim
CIBW_TEST_REQUIRES: pytest testfixtures mock
CIBW_TEST_SKIP: cp38* cp39* cp310* *_aarch64 *_arm64 *_universal2
+ CIBW_BUILD_VERBOSITY: 3
- name: Upload wheels as artifacts
if: always()
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000000..7bde83b380
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,8 @@
+[build-system]
+requires = [
+ "numpy==1.18.5; python_version=='3.8' and platform_machine not in 'arm64|aarch64'",
+ "oldest-supported-numpy; python_version>'3.8' or platform_machine in 'arm64|aarch64'",
+ "scipy",
+ "setuptools",
+ "wheel",
+]
\ No newline at end of file