We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50e10a5 commit 26bacbdCopy full SHA for 26bacbd
1 file changed
.github/workflows/ci-wheels.yml
@@ -12,7 +12,9 @@ jobs:
12
runs-on: ${{ matrix.os }}
13
strategy:
14
matrix:
15
- os: [ubuntu-latest, windows-latest, macos-latest]
+ # On Windows, some ASN1c code seems to be broken, which will be resolved
16
+ # in a future release
17
+ os: [ubuntu-latest, macos-latest] # windows-latest
18
19
steps:
20
- uses: actions/checkout@v4
@@ -27,6 +29,7 @@ jobs:
27
29
env:
28
30
# cibuildwheel will build wheel once and test it for each CPython version
31
CIBW_BUILD: "cp312-* cp313-* cp311-* cp310-*"
32
+ CIBW_SKIP: "*musllinux*"
33
CIBW_BUILD_VERBOSITY: 1
34
35
- uses: actions/upload-artifact@v4
0 commit comments