File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ jobs:
107
107
CIBW_BEFORE_BUILD_WINDOWS : scripts\build-libsrtp.bat C:\cibw\vendor
108
108
CIBW_ENVIRONMENT : CFLAGS=-I/tmp/vendor/include LDFLAGS=-L/tmp/vendor/lib PKG_CONFIG_PATH=/tmp/vendor/lib/pkgconfig
109
109
CIBW_ENVIRONMENT_WINDOWS : INCLUDE=C:\\cibw\\vendor\\include LIB=C:\\cibw\\vendor\\lib
110
- CIBW_SKIP : ' *-musllinux* pp**'
110
+ CIBW_SKIP : ' pp**'
111
111
CIBW_TEST_COMMAND : python -m unittest discover -s {project}/tests
112
112
shell : bash
113
113
run : |
Original file line number Diff line number Diff line change 1
1
{
2
- "urls" : [" https://github.com/aiortc/aioquic-openssl/releases/download/3.4.0 -1/openssl-{platform}.tar.gz" ]
2
+ "urls" : [" https://github.com/aiortc/aioquic-openssl/releases/download/3.4.1 -1/openssl-{platform}.tar.gz" ]
3
3
}
Original file line number Diff line number Diff line change @@ -12,7 +12,10 @@ def get_platform():
12
12
system = platform .system ()
13
13
machine = platform .machine ()
14
14
if system == "Linux" :
15
- return f"manylinux_{ machine } "
15
+ if platform .libc_ver ()[0 ] == "glibc" :
16
+ return f"manylinux_{ machine } "
17
+ else :
18
+ return f"musllinux_{ machine } "
16
19
elif system == "Darwin" :
17
20
# cibuildwheel sets ARCHFLAGS:
18
21
# https://github.com/pypa/cibuildwheel/blob/5255155bc57eb6224354356df648dc42e31a0028/cibuildwheel/macos.py#L207-L220
You can’t perform that action at this time.
0 commit comments