Skip to content

Commit fca4a8b

Browse files
authored
CI: Update release workflow (#110)
1 parent 4e1e990 commit fca4a8b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,15 @@ jobs:
1515
strategy:
1616
matrix:
1717
os: [ ubuntu-20.04, macOS-10.15, windows-2019 ]
18+
python-version: [ '3.7' ]
1819

1920
steps:
2021
- uses: actions/checkout@v2
2122

2223
- name: Set up Python
2324
uses: actions/setup-python@v2
25+
with:
26+
python-version: ${{ matrix.python-version }}
2427

2528
- name: Cache/restore poetry lockfile
2629
uses: actions/cache@v2
@@ -45,7 +48,7 @@ jobs:
4548
- name: Build wheels
4649
env:
4750
# skip pypy builds
48-
CIBW_SKIP: pp* cp36-* cp38-win*
51+
CIBW_SKIP: "pp* *-musllinux_x86_64 cp36-* cp38-win* cp39-win* cp310-win* cp310-manylinux* cp39-macosx* cp310-macosx*"
4952
CIBW_ARCHS_LINUX: "auto64"
5053
CIBW_ARCHS_MACOS: "x86_64"
5154
CIBW_ARCHS_WINDOWS: "auto64"

0 commit comments

Comments
 (0)