File tree Expand file tree Collapse file tree 4 files changed +10
-3
lines changed
Expand file tree Collapse file tree 4 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 6565 CIBW_ENVIRONMENT_MACOS : PKG_CONFIG_PATH=/tmp/vendor/lib/pkgconfig LDFLAGS=-headerpad_max_install_names
6666 CIBW_ENVIRONMENT_WINDOWS : INCLUDE=C:\\cibw\\vendor\\include LIB=C:\\cibw\\vendor\\lib PYAV_SKIP_TESTS=unicode_filename
6767 CIBW_REPAIR_WHEEL_COMMAND_WINDOWS : delvewheel repair --add-path C:\cibw\vendor\bin -w {dest_dir} {wheel}
68- CIBW_SKIP : " pp* *-musllinux* "
68+ CIBW_SKIP : " pp*"
6969 CIBW_TEST_COMMAND : mv {project}/av {project}/av.disabled && python -m pytest {package}/tests && mv {project}/av.disabled {project}/av
7070 CIBW_TEST_REQUIRES : pytest numpy
7171 # skip tests when there are no binary wheels of numpy
Original file line number Diff line number Diff line change @@ -20,6 +20,10 @@ We are operating with `semantic versioning <https://semver.org>`_.
2020v14.2.1
2121-------
2222
23+ Features:
24+
25+ - Provide binary wheels for musl-based Linux distros such as Alpine by :gh-user: `jlaine `.
26+
2327Fixes:
2428
2529- Uses ffmpeg 7.1.1, fixes deadlocks.
Original file line number Diff line number Diff line change @@ -11,7 +11,10 @@ def get_platform():
1111 system = platform .system ()
1212 machine = platform .machine ()
1313 if system == "Linux" :
14- return f"manylinux_{ machine } "
14+ if platform .libc_ver ()[0 ] == "glibc" :
15+ return f"manylinux_{ machine } "
16+ else :
17+ return f"musllinux_{ machine } "
1518 elif system == "Darwin" :
1619 # cibuildwheel sets ARCHFLAGS:
1720 # https://github.com/pypa/cibuildwheel/blob/5255155bc57eb6224354356df648dc42e31a0028/cibuildwheel/macos.py#L207-L220
Original file line number Diff line number Diff line change 11{
2- "url" : " https://github.com/PyAV-Org/pyav-ffmpeg/releases/download/7.1.1-1 /ffmpeg-{platform}.tar.gz"
2+ "url" : " https://github.com/PyAV-Org/pyav-ffmpeg/releases/download/7.1.1-2 /ffmpeg-{platform}.tar.gz"
33}
You can’t perform that action at this time.
0 commit comments