Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion roboflow/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
Loading