From 46327ad671e3a4f946eb67a2c25423793e4440c2 Mon Sep 17 00:00:00 2001 From: Matt Covalt Date: Thu, 17 Mar 2022 10:22:51 -0400 Subject: [PATCH] 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"', ],