Skip to content

Commit

Permalink
SDK v.6.4.0 Prep Pr (#1933)
Browse files Browse the repository at this point in the history
  • Loading branch information
vbrodsky authored Dec 19, 2024
1 parent 00f704d commit 8581e98
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 27 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
project = 'Python SDK reference'
copyright = '2024, Labelbox'
author = 'Labelbox'
release = '6.3.0'
release = '6.4.0'

# -- General configuration ---------------------------------------------------

Expand Down
4 changes: 4 additions & 0 deletions libs/labelbox/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
Expand Down
2 changes: 1 addition & 1 deletion libs/labelbox/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "labelbox"
version = "6.3.0"
version = "6.4.0"
description = "Labelbox Python API"
authors = [{ name = "Labelbox", email = "[email protected]" }]
dependencies = [
Expand Down
2 changes: 1 addition & 1 deletion libs/labelbox/src/labelbox/__init__.py
Original file line number Diff line number Diff line change
@@ -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 (
Expand Down
48 changes: 24 additions & 24 deletions libs/labelbox/tests/data/annotation_import/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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": {},
Expand All @@ -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": {},
Expand All @@ -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": {},
Expand All @@ -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": {
"<cuid>": [[7, 13], [18, 19]],
Expand Down

0 comments on commit 8581e98

Please sign in to comment.