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.
2 parents 66f5a3f + 261ed66 commit 48712f2Copy full SHA for 48712f2
1 file changed
.github/workflows/wheels-dependencies.sh
@@ -45,11 +45,7 @@ OPENJPEG_VERSION=2.5.3
45
XZ_VERSION=5.6.3
46
TIFF_VERSION=4.6.0
47
LCMS2_VERSION=2.16
48
-if [[ -n "$IS_MACOS" ]]; then
49
- GIFLIB_VERSION=5.2.2
50
-else
51
- GIFLIB_VERSION=5.2.1
52
-fi
+GIFLIB_VERSION=5.2.2
53
ZLIB_NG_VERSION=2.2.3
54
LIBWEBP_VERSION=1.5.0
55
BZIP2_VERSION=1.0.8
@@ -139,6 +135,14 @@ function build {
139
135
CFLAGS="$CFLAGS -O3 -DNDEBUG"
140
136
if [[ -n "$IS_MACOS" ]]; then
141
137
CFLAGS="$CFLAGS -Wl,-headerpad_max_install_names"
138
+ # For giflib 5.2.2
+ elif [ -n "$IS_ALPINE" ]; then
+ apk add imagemagick
+ else
142
+ if [[ "$MB_ML_VER" == "_2_28" ]]; then
143
+ yum install -y epel-release
144
+ fi
145
+ yum install -y ImageMagick
146
fi
147
build_libwebp
148
CFLAGS=$ORIGINAL_CFLAGS
0 commit comments