From e8dd12c84781cc79b15049edf6d9adb6f925a425 Mon Sep 17 00:00:00 2001 From: ryanjball Date: Thu, 21 Dec 2023 21:36:29 +0000 Subject: [PATCH 1/4] remove fps limit --- roboflow/models/inference.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roboflow/models/inference.py b/roboflow/models/inference.py index 6df6d243..255a1c00 100644 --- a/roboflow/models/inference.py +++ b/roboflow/models/inference.py @@ -169,8 +169,8 @@ def predict_video( url = urljoin(API_URL, "/video_upload_signed_url?api_key=" + self.__api_key) - if fps > 5: - raise Exception("FPS must be less than or equal to 5.") + # if fps > 5: + # raise Exception("FPS must be less than or equal to 5.") for model in additional_models: if model not in SUPPORTED_ADDITIONAL_MODELS: From 0adb2baaa0fc2c8b8578a0faa139ccd254cef65b Mon Sep 17 00:00:00 2001 From: ryanjball Date: Thu, 21 Dec 2023 21:40:02 +0000 Subject: [PATCH 2/4] change python version requirements to 3.7 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f58e6f3a..8ee8e217 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ The Python package is documented on the [official Roboflow documentation site](h ## 💻 Installation -You will need to have `Python 3.6` or higher set up to use the Roboflow Python package. +You will need to have `Python 3.7` or higher set up to use the Roboflow Python package. Run the following command to install the Roboflow Python package: From 30acecdd9bdfffc042e7fe780070d0f999c87d4a Mon Sep 17 00:00:00 2001 From: ryanjball Date: Thu, 21 Dec 2023 21:45:34 +0000 Subject: [PATCH 3/4] 3.8 or higher python version --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8ee8e217..213a9770 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ The Python package is documented on the [official Roboflow documentation site](h ## 💻 Installation -You will need to have `Python 3.7` or higher set up to use the Roboflow Python package. +You will need to have `Python 3.8` or higher set up to use the Roboflow Python package. Run the following command to install the Roboflow Python package: From 390e10c4f1cd3268df18b51f69aca5616716d816 Mon Sep 17 00:00:00 2001 From: ryanjball Date: Thu, 21 Dec 2023 21:51:19 +0000 Subject: [PATCH 4/4] 1.1.13 --- roboflow/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roboflow/__init__.py b/roboflow/__init__.py index d8771070..97fb32f1 100644 --- a/roboflow/__init__.py +++ b/roboflow/__init__.py @@ -13,7 +13,7 @@ from roboflow.models import CLIPModel, GazeModel from roboflow.util.general import write_line -__version__ = "1.1.12" +__version__ = "1.1.13" def check_key(api_key, model, notebook, num_retries=0):