From c5dc14540b81bb36ad2fc15a380a7a7f8341c968 Mon Sep 17 00:00:00 2001 From: Iuri de Silvio Date: Sun, 29 Jun 2025 13:13:16 +0200 Subject: [PATCH] Limit pillow-heif <1.0 and bump patch --- CHANGELOG.md | 4 ++++ requirements.txt | 2 +- roboflow/__init__.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index df7db79c..c60033dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. +## 1.1.67 + +- Restrict `pillow-heif` dependency to `<1.0` to retain AVIF support. + ## 1.1.50 - Added support for Palligema2 model uploads via `upload_model` command with the following model types: diff --git a/requirements.txt b/requirements.txt index a184080d..6b83cf43 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,7 +6,7 @@ matplotlib numpy>=1.18.5 opencv-python-headless==4.10.0.84 Pillow>=7.1.2 -pillow-heif>=0.18.0 +pillow-heif>=0.18.0,<1.0 python-dateutil python-dotenv requests diff --git a/roboflow/__init__.py b/roboflow/__init__.py index 1f0dd141..00fae2b2 100644 --- a/roboflow/__init__.py +++ b/roboflow/__init__.py @@ -15,7 +15,7 @@ from roboflow.models import CLIPModel, GazeModel # noqa: F401 from roboflow.util.general import write_line -__version__ = "1.1.66" +__version__ = "1.1.67" def check_key(api_key, model, notebook, num_retries=0):