diff --git a/pyproject.toml b/pyproject.toml index 61cfa870..37cd89bb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,6 +32,7 @@ ignore = [ "N", "PERF", "PIE", + "PLC0415", # `import` should be at the top-level of a file "PLR", "PLW", "PT", diff --git a/requirements.txt b/requirements.txt index a184080d..d0736cd6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -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 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):