Skip to content

Commit d55f738

Browse files
authored
Merge pull request #209 from roboflow/remove_fps_limit
Remove FPS limit
2 parents 811368e + 390e10c commit d55f738

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ The Python package is documented on the [official Roboflow documentation site](h
3636

3737
## 💻 Installation
3838

39-
You will need to have `Python 3.6` or higher set up to use the Roboflow Python package.
39+
You will need to have `Python 3.8` or higher set up to use the Roboflow Python package.
4040

4141
Run the following command to install the Roboflow Python package:
4242

roboflow/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from roboflow.models import CLIPModel, GazeModel
1414
from roboflow.util.general import write_line
1515

16-
__version__ = "1.1.12"
16+
__version__ = "1.1.13"
1717

1818

1919
def check_key(api_key, model, notebook, num_retries=0):

roboflow/models/inference.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,8 @@ def predict_video(
170170

171171
url = urljoin(API_URL, "/video_upload_signed_url?api_key=" + self.__api_key)
172172

173-
if fps > 5:
174-
raise Exception("FPS must be less than or equal to 5.")
173+
# if fps > 5:
174+
# raise Exception("FPS must be less than or equal to 5.")
175175

176176
for model in additional_models:
177177
if model not in SUPPORTED_ADDITIONAL_MODELS:

0 commit comments

Comments
 (0)