Skip to content

Commit fedfab4

Browse files
committed
updating version requirement
1 parent cfc3a17 commit fedfab4

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

plugins/annotation/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -920,7 +920,7 @@ def execute(self, ctx):
920920
kwargs = {}
921921

922922
if delegate:
923-
# can remove check if we require `fiftyone>=0.24`
923+
# can remove check if we require `fiftyone>=0.23.3`
924924
if (
925925
"progress"
926926
in inspect.signature(ctx.dataset.load_annotations).parameters

plugins/brain/__init__.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def execute(self, ctx):
7676
kwargs = {}
7777

7878
if delegate:
79-
# can remove check if we require `fiftyone>=0.24`
79+
# can remove check if we require `fiftyone>=0.23.3`
8080
if (
8181
"progress"
8282
in inspect.signature(fob.compute_visualization).parameters
@@ -199,7 +199,7 @@ def execute(self, ctx):
199199
target_view = _get_target_view(ctx, target)
200200

201201
if delegate:
202-
# can remove check if we require `fiftyone>=0.24`
202+
# can remove check if we require `fiftyone>=0.23.3`
203203
if (
204204
"progress"
205205
in inspect.signature(fob.compute_similarity).parameters
@@ -1003,7 +1003,7 @@ def execute(self, ctx):
10031003
kwargs = {}
10041004

10051005
if delegate:
1006-
# can remove check if we require `fiftyone>=0.24`
1006+
# can remove check if we require `fiftyone>=0.23.3`
10071007
if (
10081008
"progress"
10091009
in inspect.signature(fob.compute_uniqueness).parameters
@@ -1103,7 +1103,7 @@ def execute(self, ctx):
11031103
target_view = _get_target_view(ctx, target)
11041104

11051105
if delegate:
1106-
# can remove check if we require `fiftyone>=0.24`
1106+
# can remove check if we require `fiftyone>=0.23.3`
11071107
if (
11081108
"progress"
11091109
in inspect.signature(fob.compute_mistakenness).parameters
@@ -1299,7 +1299,7 @@ def execute(self, ctx):
12991299
kwargs = {}
13001300

13011301
if delegate:
1302-
# can remove check if we require `fiftyone>=0.24`
1302+
# can remove check if we require `fiftyone>=0.23.3`
13031303
if (
13041304
"progress"
13051305
in inspect.signature(fob.compute_hardness).parameters

plugins/evaluation/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def execute(self, ctx):
6666
eval_fcn = target_view.evaluate_segmentations
6767

6868
if delegate:
69-
# can remove check if we require `fiftyone>=0.24`
69+
# can remove check if we require `fiftyone>=0.23.3`
7070
if "progress" in inspect.signature(eval_fcn).parameters:
7171
progress = lambda pb: ctx.set_progress(progress=pb.progress)
7272
kwargs["progress"] = fo.report_progress(progress, dt=5.0)

plugins/io/__init__.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -821,7 +821,7 @@ def _import_media_only(ctx):
821821
if delegate:
822822
kwargs = {}
823823

824-
# can remove check if we require `fiftyone>=0.24`
824+
# can remove check if we require `fiftyone>=0.23.3`
825825
if "progress" in inspect.signature(ctx.dataset.add_samples).parameters:
826826
progress = lambda pb: ctx.set_progress(progress=pb.progress)
827827
kwargs["progress"] = fo.report_progress(progress, dt=5.0)
@@ -867,7 +867,7 @@ def _import_media_and_labels(ctx):
867867
kwargs["label_types"] = label_types
868868

869869
if delegate:
870-
# can remove check if we require `fiftyone>=0.24`
870+
# can remove check if we require `fiftyone>=0.23.3`
871871
if "progress" in inspect.signature(ctx.dataset.add_dir).parameters:
872872
progress = lambda pb: ctx.set_progress(progress=pb.progress)
873873
kwargs["progress"] = fo.report_progress(progress, dt=5.0)
@@ -914,7 +914,7 @@ def _import_labels_only(ctx):
914914
kwargs["label_types"] = label_types
915915

916916
if delegate:
917-
# can remove check if we require `fiftyone>=0.24`
917+
# can remove check if we require `fiftyone>=0.23.3`
918918
if "progress" in inspect.signature(ctx.dataset.merge_dir).parameters:
919919
progress = lambda pb: ctx.set_progress(progress=pb.progress)
920920
kwargs["progress"] = fo.report_progress(progress, dt=5.0)
@@ -2089,7 +2089,7 @@ def _export_samples(ctx):
20892089
kwargs["abs_paths"] = abs_paths
20902090

20912091
if delegate:
2092-
# can remove check if we require `fiftyone>=0.24`
2092+
# can remove check if we require `fiftyone>=0.23.3`
20932093
if "progress" in inspect.signature(target_view.export).parameters:
20942094
progress = lambda pb: ctx.set_progress(progress=pb.progress)
20952095
kwargs["progress"] = fo.report_progress(progress, dt=5.0)
@@ -2560,7 +2560,7 @@ def execute(self, ctx):
25602560
kwargs = {}
25612561

25622562
if delegate:
2563-
# can remove check if we require `fiftyone>=0.24`
2563+
# can remove check if we require `fiftyone>=0.23.3`
25642564
if (
25652565
"progress"
25662566
in inspect.signature(target_view.draw_labels).parameters

plugins/utils/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1202,7 +1202,7 @@ def execute(self, ctx):
12021202
if delegate:
12031203
kwargs = {}
12041204

1205-
# can remove check if we require `fiftyone>=0.24`
1205+
# can remove check if we require `fiftyone>=0.23.3`
12061206
if (
12071207
"progress"
12081208
in inspect.signature(view.compute_metadata).parameters
@@ -1518,7 +1518,7 @@ def execute(self, ctx):
15181518
kwargs = {}
15191519

15201520
if delegate:
1521-
# can remove check if we require `fiftyone>=0.24`
1521+
# can remove check if we require `fiftyone>=0.23.3`
15221522
if (
15231523
"progress"
15241524
in inspect.signature(foui.transform_images).parameters

plugins/zoo/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def execute(self, ctx):
5252
dataset_name = _get_zoo_dataset_name(ctx)
5353

5454
if delegate:
55-
# can remove check if we require `fiftyone>=0.24`
55+
# can remove check if we require `fiftyone>=0.23.3`
5656
if (
5757
"progress"
5858
in inspect.signature(foz.load_zoo_dataset).parameters
@@ -458,7 +458,7 @@ def execute(self, ctx):
458458
kwargs = {}
459459

460460
if delegate:
461-
# can remove check if we require `fiftyone>=0.24`
461+
# can remove check if we require `fiftyone>=0.23.3`
462462
if (
463463
"progress"
464464
in inspect.signature(target_view.apply_model).parameters

0 commit comments

Comments
 (0)