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 57786a2 commit 9deef83Copy full SHA for 9deef83
.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.2
54
LIBWEBP_VERSION=1.5.0
55
BZIP2_VERSION=1.0.8
@@ -139,6 +135,11 @@ 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
+ yum install -y ImageMagick
143
fi
144
build_libwebp
145
CFLAGS=$ORIGINAL_CFLAGS
0 commit comments