From 935694755dae711b9b62df54295b50f38b771835 Mon Sep 17 00:00:00 2001 From: Matt Covalt Date: Wed, 16 Mar 2022 13:48:39 -0400 Subject: [PATCH 1/2] Change `libtiff` dependency to `pylibtiff` --- sources/tiff/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/tiff/setup.py b/sources/tiff/setup.py index 7a9454d8a..2564d5879 100644 --- a/sources/tiff/setup.py +++ b/sources/tiff/setup.py @@ -44,7 +44,7 @@ def prerelease_local_scheme(version): ], install_requires=[ 'large-image', - 'libtiff>=0.4.1', + 'pylibtiff>=0.4.1', 'tifftools>=1.2.0', 'importlib-metadata ; python_version < "3.8"', ], From 42167f341a4286b0d0bcce0ae8aa4ab0ab844d84 Mon Sep 17 00:00:00 2001 From: Matt Covalt Date: Thu, 17 Mar 2022 10:22:51 -0400 Subject: [PATCH 2/2] Remove the version limiter for `pylibtiff` `pylibtiff` was only published as 0.4.4 (and our wheel which uses an artificially higher number to get priority). @manthey https://github.com/girder/large_image/pull/799#discussion_r829156452 --- sources/tiff/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/tiff/setup.py b/sources/tiff/setup.py index 2564d5879..751e955bc 100644 --- a/sources/tiff/setup.py +++ b/sources/tiff/setup.py @@ -44,7 +44,7 @@ def prerelease_local_scheme(version): ], install_requires=[ 'large-image', - 'pylibtiff>=0.4.1', + 'pylibtiff', 'tifftools>=1.2.0', 'importlib-metadata ; python_version < "3.8"', ],