Skip to content
Merged
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
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ ignore = [
"N",
"PERF",
"PIE",
"PLC0415", # `import` should be at the top-level of a file
"PLR",
"PLW",
"PT",
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ matplotlib
numpy>=1.18.5
opencv-python-headless==4.10.0.84
Pillow>=7.1.2
pillow-heif>=0.18.0
# https://github.com/roboflow/roboflow-python/issues/390
pillow-heif<1
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