From 2f8023da64851d26dcae5f606a9ff7d0d85354e5 Mon Sep 17 00:00:00 2001 From: CamDavidsonPilon Date: Tue, 3 Oct 2023 10:57:30 -0400 Subject: [PATCH] correct linux platform --- .github/workflows/build.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 8315fd0d..9273c72b 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -49,10 +49,11 @@ jobs: python-version: 3.9 - name: 🏗 Install build dependencies run: | + python -m pip install --upgrade pip python -m pip install wheel build --user - name: 🔨 Build wheels for all dependencies run: | - pip download . -d wheels -r requirements/requirements_dev.txt --index-url https://piwheels.org/simple --platform linux_armv7l --platform linux_armv6l --platform manylinux_2_36_armv7l --only-binary=:all: --extra-index-url https://pypi.org/simple + pip download -d wheels -r requirements/requirements_dev.txt --index-url https://piwheels.org/simple --platform linux_armv7l --platform linux_armv6l --platform manylinux_2_31_armv7l --only-binary=:all: --extra-index-url https://pypi.org/simple --python-version 39 - name: Zip the wheels run: | cd wheels