diff --git a/README.md b/README.md index f58e6f3a..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.6` 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: 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): 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: