Skip to content

Commit

Permalink
MNT: Explicitly require x64 arch
Browse files Browse the repository at this point in the history
  • Loading branch information
rdbisme committed May 4, 2024
1 parent 1dc14d8 commit 4ce03a2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ jobs:
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
architecture: ["x86", "x64"]
os:
[
ubuntu-latest,
Expand All @@ -24,6 +25,7 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: ${{ matrix.architecture }}

- name: Install
run: |
Expand Down Expand Up @@ -83,7 +85,7 @@ jobs:
release:
needs: [build_wheels, build_sdist]
# if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
if: github.event_name == 'push'
if: github.event_name == 'push'
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
Expand Down

0 comments on commit 4ce03a2

Please sign in to comment.