Skip to content

Commit

Permalink
👷 Disable CI builds on 32-bit Windows
Browse files Browse the repository at this point in the history
Getting an error with compiling pandas 2.2.1 on Windows x86 (32-bit), and pandas has moved away from providing 32-bit Windows wheels, see pandas-dev/pandas#54979, so might as well not build cog3pio wheels for 32-bit Windows since we can't test them properly.
  • Loading branch information
weiji14 committed Mar 26, 2024
1 parent 899d77d commit 4946458
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
runs-on: windows-2022
strategy:
matrix:
target: [x64, x86]
target: [x64]
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
Expand All @@ -89,7 +89,6 @@ jobs:
name: wheels-windows-${{ matrix.target }}
path: dist
- name: pytest
if: ${{ !startsWith(matrix.target, 'aarch64') }}
shell: bash
run: |
set -e
Expand Down

0 comments on commit 4946458

Please sign in to comment.