Skip to content

Commit 8581e98

Browse files
authored
SDK v.6.4.0 Prep Pr (#1933)
1 parent 00f704d commit 8581e98

File tree

5 files changed

+31
-27
lines changed

5 files changed

+31
-27
lines changed

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
project = 'Python SDK reference'
1717
copyright = '2024, Labelbox'
1818
author = 'Labelbox'
19-
release = '6.3.0'
19+
release = '6.4.0'
2020

2121
# -- General configuration ---------------------------------------------------
2222

libs/labelbox/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# Changelog
2+
# Version 6.4.0 (2024-12-19)
3+
* Add feature schema attributes to support auto ocr tool in ontologies([#1930](https://github.com/Labelbox/labelbox-python/pull/1930))
4+
* 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))
5+
26
# Version 6.3.0 (2024-12-12)
37
## Added
48
* Group member upload([#1924](https://github.com/Labelbox/labelbox-python/pull/1924))

libs/labelbox/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "labelbox"
3-
version = "6.3.0"
3+
version = "6.4.0"
44
description = "Labelbox Python API"
55
authors = [{ name = "Labelbox", email = "[email protected]" }]
66
dependencies = [

libs/labelbox/src/labelbox/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "labelbox"
22

3-
__version__ = "6.3.0"
3+
__version__ = "6.4.0"
44

55
from labelbox.client import Client
66
from labelbox.schema.annotation_import import (

libs/labelbox/tests/data/annotation_import/conftest.py

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -2210,21 +2210,21 @@ def expected_export_v2_video():
22102210
"classifications": [
22112211
{
22122212
"name": "checklist_index",
2213-
"value": "checklist_index",
2213+
"value": "checklist_index",
22142214
"checklist_answers": [
22152215
{
22162216
"name": "first_checklist_answer",
22172217
"value": "first_checklist_answer",
2218-
"classifications": []
2218+
"classifications": [],
22192219
},
22202220
{
2221-
"name": "second_checklist_answer",
2221+
"name": "second_checklist_answer",
22222222
"value": "second_checklist_answer",
2223-
"classifications": []
2224-
}
2225-
]
2223+
"classifications": [],
2224+
},
2225+
],
22262226
}
2227-
]
2227+
],
22282228
},
22292229
"13": {
22302230
"objects": {},
@@ -2235,17 +2235,17 @@ def expected_export_v2_video():
22352235
"checklist_answers": [
22362236
{
22372237
"name": "first_checklist_answer",
2238-
"value": "first_checklist_answer",
2239-
"classifications": []
2238+
"value": "first_checklist_answer",
2239+
"classifications": [],
22402240
},
22412241
{
22422242
"name": "second_checklist_answer",
22432243
"value": "second_checklist_answer",
2244-
"classifications": []
2245-
}
2246-
]
2244+
"classifications": [],
2245+
},
2246+
],
22472247
}
2248-
]
2248+
],
22492249
},
22502250
"18": {
22512251
"objects": {},
@@ -2257,16 +2257,16 @@ def expected_export_v2_video():
22572257
{
22582258
"name": "first_checklist_answer",
22592259
"value": "first_checklist_answer",
2260-
"classifications": []
2260+
"classifications": [],
22612261
},
22622262
{
22632263
"name": "second_checklist_answer",
22642264
"value": "second_checklist_answer",
2265-
"classifications": []
2266-
}
2267-
]
2265+
"classifications": [],
2266+
},
2267+
],
22682268
}
2269-
]
2269+
],
22702270
},
22712271
"19": {
22722272
"objects": {},
@@ -2278,17 +2278,17 @@ def expected_export_v2_video():
22782278
{
22792279
"name": "first_checklist_answer",
22802280
"value": "first_checklist_answer",
2281-
"classifications": []
2281+
"classifications": [],
22822282
},
22832283
{
22842284
"name": "second_checklist_answer",
22852285
"value": "second_checklist_answer",
2286-
"classifications": []
2287-
}
2288-
]
2286+
"classifications": [],
2287+
},
2288+
],
22892289
}
2290-
]
2291-
}
2290+
],
2291+
},
22922292
},
22932293
"segments": {
22942294
"<cuid>": [[7, 13], [18, 19]],

0 commit comments

Comments
 (0)