Skip to content

Commit a23d20a

Browse files
committedMay 4, 2024·
MNT: Explicitly require x64 arch
1 parent 1dc14d8 commit a23d20a

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed
 

‎.github/workflows/ci.yml

+14-3
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,33 @@ jobs:
88
strategy:
99
matrix:
1010
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
11+
architecture: [x86, x64]
1112
os:
1213
[
1314
ubuntu-latest,
1415
ubuntu-20.04,
15-
macos-latest,
16-
macos-11,
16+
macos-13,
17+
macos-12,
1718
windows-latest,
1819
windows-2019,
1920
]
21+
exclude:
22+
- os: ubuntu-latest
23+
architecture: x86
24+
- os: ubuntu-20.04
25+
architecture: x86
26+
- os: macos-13
27+
architecture: x86
28+
- os: macos-12
29+
architecture: x86
2030
steps:
2131
- uses: actions/checkout@v4
2232

2333
- name: Set up Python ${{ matrix.python-version }}
2434
uses: actions/setup-python@v5
2535
with:
2636
python-version: ${{ matrix.python-version }}
37+
architecture: ${{ matrix.architecture }}
2738

2839
- name: Install
2940
run: |
@@ -83,7 +94,7 @@ jobs:
8394
release:
8495
needs: [build_wheels, build_sdist]
8596
# if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
86-
if: github.event_name == 'push'
97+
if: github.event_name == 'push'
8798
runs-on: ubuntu-latest
8899
steps:
89100
- uses: actions/download-artifact@v4

0 commit comments

Comments
 (0)
Please sign in to comment.