Skip to content

Commit 8324b49

Browse files
authored
Update libtiff to 4.7.1 (#9222)
2 parents ffe0010 + 637f25d commit 8324b49

File tree

3 files changed

+3
-10
lines changed

3 files changed

+3
-10
lines changed

.github/workflows/wheels-dependencies.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ JPEGTURBO_VERSION=3.1.2
104104
OPENJPEG_VERSION=2.5.4
105105
XZ_VERSION=5.8.1
106106
ZSTD_VERSION=1.5.7
107-
TIFF_VERSION=4.7.0
107+
TIFF_VERSION=4.7.1
108108
LCMS2_VERSION=2.17
109109
ZLIB_NG_VERSION=2.2.5
110110
LIBWEBP_VERSION=1.6.0

docs/installation/building-from-source.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Many of Pillow's features require external libraries:
4444

4545
* **libtiff** provides compressed TIFF functionality
4646

47-
* Pillow has been tested with libtiff versions **4.0-4.7.0**
47+
* Pillow has been tested with libtiff versions **4.0-4.7.1**
4848

4949
* **libfreetype** provides type related services
5050

winbuild/build_prepare.py

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def cmd_msbuild(
124124
"LIBPNG": "1.6.50",
125125
"LIBWEBP": "1.6.0",
126126
"OPENJPEG": "2.5.4",
127-
"TIFF": "4.7.0",
127+
"TIFF": "4.7.1",
128128
"XZ": "5.8.1",
129129
"ZLIBNG": "2.2.5",
130130
}
@@ -228,20 +228,13 @@ def cmd_msbuild(
228228
# link against libwebp.lib
229229
"#ifdef WEBP_SUPPORT": '#ifdef WEBP_SUPPORT\n#pragma comment(lib, "libwebp.lib")', # noqa: E501
230230
},
231-
r"test\CMakeLists.txt": {
232-
"add_executable(test_write_read_tags ../placeholder.h)": "",
233-
"target_sources(test_write_read_tags PRIVATE test_write_read_tags.c)": "", # noqa: E501
234-
"target_link_libraries(test_write_read_tags PRIVATE tiff)": "",
235-
"list(APPEND simple_tests test_write_read_tags)": "",
236-
},
237231
},
238232
"build": [
239233
*cmds_cmake(
240234
"tiff",
241235
"-DBUILD_SHARED_LIBS:BOOL=OFF",
242236
"-DWebP_LIBRARY=libwebp",
243237
'-DCMAKE_C_FLAGS="-nologo -DLZMA_API_STATIC"',
244-
"-DCMAKE_POLICY_VERSION_MINIMUM=3.5",
245238
)
246239
],
247240
"headers": [r"libtiff\tiff*.h"],

0 commit comments

Comments
 (0)