From 8581e986fef5fe731496da703ed47c8ca1e42fda Mon Sep 17 00:00:00 2001 From: Val Brodsky Date: Thu, 19 Dec 2024 10:29:41 -0800 Subject: [PATCH] SDK v.6.4.0 Prep Pr (#1933) --- docs/conf.py | 2 +- libs/labelbox/CHANGELOG.md | 4 ++ libs/labelbox/pyproject.toml | 2 +- libs/labelbox/src/labelbox/__init__.py | 2 +- .../tests/data/annotation_import/conftest.py | 48 +++++++++---------- 5 files changed, 31 insertions(+), 27 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index e1e65e074..914c37e54 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -16,7 +16,7 @@ project = 'Python SDK reference' copyright = '2024, Labelbox' author = 'Labelbox' -release = '6.3.0' +release = '6.4.0' # -- General configuration --------------------------------------------------- diff --git a/libs/labelbox/CHANGELOG.md b/libs/labelbox/CHANGELOG.md index 2aaac81b6..22c59b59d 100644 --- a/libs/labelbox/CHANGELOG.md +++ b/libs/labelbox/CHANGELOG.md @@ -1,4 +1,8 @@ # Changelog +# Version 6.4.0 (2024-12-19) +* Add feature schema attributes to support auto ocr tool in ontologies([#1930](https://github.com/Labelbox/labelbox-python/pull/1930)) +* Move to task queue task id to be optional with default as None for better type support ([#1929](https://github.com/Labelbox/labelbox-python/pull/1929)) + # Version 6.3.0 (2024-12-12) ## Added * Group member upload([#1924](https://github.com/Labelbox/labelbox-python/pull/1924)) diff --git a/libs/labelbox/pyproject.toml b/libs/labelbox/pyproject.toml index 110a422f6..a5425f9cd 100644 --- a/libs/labelbox/pyproject.toml +++ b/libs/labelbox/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "labelbox" -version = "6.3.0" +version = "6.4.0" description = "Labelbox Python API" authors = [{ name = "Labelbox", email = "engineering@labelbox.com" }] dependencies = [ diff --git a/libs/labelbox/src/labelbox/__init__.py b/libs/labelbox/src/labelbox/__init__.py index 8611a1456..8e79e936d 100644 --- a/libs/labelbox/src/labelbox/__init__.py +++ b/libs/labelbox/src/labelbox/__init__.py @@ -1,6 +1,6 @@ name = "labelbox" -__version__ = "6.3.0" +__version__ = "6.4.0" from labelbox.client import Client from labelbox.schema.annotation_import import ( diff --git a/libs/labelbox/tests/data/annotation_import/conftest.py b/libs/labelbox/tests/data/annotation_import/conftest.py index 3e851752e..2f773e9cb 100644 --- a/libs/labelbox/tests/data/annotation_import/conftest.py +++ b/libs/labelbox/tests/data/annotation_import/conftest.py @@ -2210,21 +2210,21 @@ def expected_export_v2_video(): "classifications": [ { "name": "checklist_index", - "value": "checklist_index", + "value": "checklist_index", "checklist_answers": [ { "name": "first_checklist_answer", "value": "first_checklist_answer", - "classifications": [] + "classifications": [], }, { - "name": "second_checklist_answer", + "name": "second_checklist_answer", "value": "second_checklist_answer", - "classifications": [] - } - ] + "classifications": [], + }, + ], } - ] + ], }, "13": { "objects": {}, @@ -2235,17 +2235,17 @@ def expected_export_v2_video(): "checklist_answers": [ { "name": "first_checklist_answer", - "value": "first_checklist_answer", - "classifications": [] + "value": "first_checklist_answer", + "classifications": [], }, { "name": "second_checklist_answer", "value": "second_checklist_answer", - "classifications": [] - } - ] + "classifications": [], + }, + ], } - ] + ], }, "18": { "objects": {}, @@ -2257,16 +2257,16 @@ def expected_export_v2_video(): { "name": "first_checklist_answer", "value": "first_checklist_answer", - "classifications": [] + "classifications": [], }, { "name": "second_checklist_answer", "value": "second_checklist_answer", - "classifications": [] - } - ] + "classifications": [], + }, + ], } - ] + ], }, "19": { "objects": {}, @@ -2278,17 +2278,17 @@ def expected_export_v2_video(): { "name": "first_checklist_answer", "value": "first_checklist_answer", - "classifications": [] + "classifications": [], }, { "name": "second_checklist_answer", "value": "second_checklist_answer", - "classifications": [] - } - ] + "classifications": [], + }, + ], } - ] - } + ], + }, }, "segments": { "": [[7, 13], [18, 19]],