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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
2 changes: 1 addition & 1 deletion roboflow/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
4 changes: 2 additions & 2 deletions roboflow/models/inference.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down