We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e1e990 commit fca4a8bCopy full SHA for fca4a8b
.github/workflows/release.yml
@@ -15,12 +15,15 @@ jobs:
15
strategy:
16
matrix:
17
os: [ ubuntu-20.04, macOS-10.15, windows-2019 ]
18
+ python-version: [ '3.7' ]
19
20
steps:
21
- uses: actions/checkout@v2
22
23
- name: Set up Python
24
uses: actions/setup-python@v2
25
+ with:
26
+ python-version: ${{ matrix.python-version }}
27
28
- name: Cache/restore poetry lockfile
29
uses: actions/cache@v2
@@ -45,7 +48,7 @@ jobs:
45
48
- name: Build wheels
46
49
env:
47
50
# skip pypy builds
- 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*"
52
CIBW_ARCHS_LINUX: "auto64"
53
CIBW_ARCHS_MACOS: "x86_64"
54
CIBW_ARCHS_WINDOWS: "auto64"
0 commit comments