From 5f9f267b3a1e187c305ceb96df8c91ea3b4d1a46 Mon Sep 17 00:00:00 2001 From: David Manthey Date: Fri, 5 May 2023 08:42:33 -0400 Subject: [PATCH] Fix a version reference in the source extras_require --- CHANGELOG.md | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 193b2f035..6d393bb6f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ - Allow clearing the min/max fields of the frame selector ([#1130](../../pull/1130)) - Fix a bug with caching tiles and styling ([#1131](../../pull/1131)) - Fix setting minimum values on bands from the frame selector ([#1138](../../pull/1138)) +- Fix a version reference in the source extras_require ([#1150](../../pull/1150)) ## 1.20.5 diff --git a/setup.py b/setup.py index e07b3218e..c4d89a798 100644 --- a/setup.py +++ b/setup.py @@ -60,7 +60,7 @@ def prerelease_local_scheme(version): 'pil': [f'large-image-source-pil{limit_version}'], 'test': [f'large-image-source-test{limit_version}'], 'tiff': [f'large-image-source-tiff{limit_version}'], - 'tifffile': [f'large-image-source-tifffile{limit_version}'], + 'tifffile': [f'large-image-source-tifffile{limit_version} ; python_version >= "3.7"'], 'vips': [f'large-image-source-vips{limit_version}'], } extraReqs.update(sources)