Skip to content

Commit e2568ca

Browse files
committed
chore: Add macos in build_wheels job in wheels.yml
ubuntu runs both cp39 and cp310 versions. macos runs only cp39 versions as of this commit.
1 parent a99b7ac commit e2568ca

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/wheels.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,13 @@ jobs:
4747
strategy:
4848
fail-fast: false
4949
matrix:
50-
os: [ubuntu]
51-
python-version: ['cp39', 'cp310']
50+
include:
51+
- os: ubuntu
52+
python-version: 'cp39'
53+
- os: ubuntu
54+
python-version: 'cp310'
55+
- os: macos
56+
python-version: 'cp39'
5257

5358
runs-on: ${{ format('{0}-latest', matrix.os) }}
5459
steps:

0 commit comments

Comments
 (0)