From 5be0a96f985c1a8708aee46200bf32ce61bb9f3d Mon Sep 17 00:00:00 2001 From: Marc Culler Date: Tue, 3 Sep 2024 18:00:58 -0500 Subject: [PATCH] Oops. wrong branch --- .github/workflows/linux.yml | 12 ++++++------ .github/workflows/macos.yml | 13 ++++++------- .github/workflows/windows.yml | 9 ++++----- 3 files changed, 16 insertions(+), 18 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 5085447..acff177 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -11,24 +11,24 @@ jobs: os: [ubuntu-22.04] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v2 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v2 name: Install Python with: python-version: '3.10' - name: Install cibuildwheel run: | - python3.10 -m pip install cibuildwheel + python3 -m pip install cibuildwheel - name: Build wheels run: | - python3.10 -m cibuildwheel --output-dir wheelhouse + python3 -m cibuildwheel --output-dir wheelhouse env: - CIBW_BUILD: cp39-manylinux_x86-64 cp310-manylinux_x86_64 cp311-manylinux_x86-64 cp312-manylinux_x86_64 + CIBW_BUILD: cp38-manylinux_x86_64 cp39-manylinux_x86-64 cp310-manylinux_x86_64 cp311-manylinux_x86-64 cp312-manylinux_x86_64 CIBW_BEFORE_BUILD: | - python -m pip install Cython>=3.0.0 + pip3 install cython>=3.0.0 CIBW_REPAIR_WHEEL_COMMAND_LINUX: auditwheel repair --strip -w {dest_dir} {wheel} CIBW_TEST_COMMAND: python -m cypari.test diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index f85c692..f49cf23 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -11,25 +11,24 @@ jobs: os: [macos-13] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 name: Install Python with: - python-version: 3.12 + python-version: '3.12' - name: Install cibuildwheel run: | - python3 -m pip install Cython>=3.0.0 - python3 -m pip install cibuildwheel + python -m pip install cibuildwheel - name: Build wheels run: | python3 -m cibuildwheel --output-dir wheelhouse env: - CIBW_BUILD: cp312-* cp311-* cp310-* cp39-* + CIBW_BUILD: cp38* cp39* cp310* cp311* cp312* CIBW_ARCHS_MACOS: "x86_64 arm64 universal2" CIBW_BEFORE_BUILD: | - python -m pip install Cython>=3.0.0 + pip install cython>=3.0.0 CIBW_TEST_COMMAND: python -m cypari.test - uses: actions/upload-artifact@v2 diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 0bfb568..e13dc71 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -11,9 +11,9 @@ jobs: shell: msys2 {0} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 name: Install a Python to use for building with: python-version: '3.12' @@ -39,7 +39,6 @@ jobs: - name: Install cibuildwheel run: | - python3 -m pip install Cython>=3.0.0 python3 -m pip install cibuildwheel - name: Build gmp and pari @@ -51,9 +50,9 @@ jobs: python3 -m cibuildwheel --output-dir wheelhouse env: CIBW_ARCHS: AMD64 - CIBW_BUILD: cp312-* cp311-* cp310-* cp39-* + CIBW_BUILD: cp38* cp39* cp310* cp311* cp312* CIBW_BEFORE_BUILD: | - python -m pip install Cython>=3.0.0 + pip install Cython>=3.0.0 CIBW_TEST_COMMAND: python -m cypari.test - uses: actions/upload-artifact@v3