File tree Expand file tree Collapse file tree 5 files changed +15
-4
lines changed
Expand file tree Collapse file tree 5 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 1616project = 'Python SDK reference'
1717copyright = '2024, Labelbox'
1818author = 'Labelbox'
19- release = '3.76 .0'
19+ release = '3.77 .0'
2020
2121# -- General configuration ---------------------------------------------------
2222
Original file line number Diff line number Diff line change 11# Changelog
2+ # Version 3.77.0 (2024-08-09)
3+ ## Added
4+ * LabelingService request()([ #1761 ] ( https://github.com/Labelbox/labelbox-python/pull/1761 ) )
5+ * Validates all project requirements and requests a labeling service
6+ * Allow marking Label with is_benchmark_reference flag([ #1718 ] ( https://github.com/Labelbox/labelbox-python/pull/1718 ) )
7+ ## Updated
8+ * Project get_labeling_service() will now create labeling service if one is missing([ #1762 ] ( https://github.com/Labelbox/labelbox-python/pull/1762 ) )
9+ ## Removed
10+ * ** BREAKING CHANGE** Project.labeling_frontend.disconnect() ([ #1763 ] ( https://github.com/Labelbox/labelbox-python/pull/1763 ) )
11+ * We only support one default labeling front end per project and a user can not disconnect it
12+ * ** BREAKING CHANGE** Experimental method project.request_labeling_service() - duplicate, not needed([ #1762 ] ( https://github.com/Labelbox/labelbox-python/pull/1762 ) ).
13+
214# Version 3.76.0 (2024-07-29)
315# Added
416* Added Project get_labeling_service(), request_labeling_service() and get_labeling_service_status()
Original file line number Diff line number Diff line change 11[project ]
22name = " labelbox"
3- version = " 3.76 .0"
3+ version = " 3.77 .0"
44description = " Labelbox Python API"
55authors = [{ name = " Labelbox" , email = " engineering@labelbox.com" }]
66dependencies = [
Original file line number Diff line number Diff line change 11name = "labelbox"
22
3- __version__ = "3.76 .0"
3+ __version__ = "3.77 .0"
44
55from labelbox .client import Client
66from labelbox .schema .project import Project
Original file line number Diff line number Diff line change @@ -167,7 +167,6 @@ def test_get_user_groups_with_creation_deletion(client):
167167
168168 user_groups_post_deletion = list (UserGroup (client ).get_user_groups ())
169169
170- assert len (user_groups_post_deletion ) > 0
171170 assert len (user_groups_post_deletion ) == len (user_groups_post_creation ) - 1
172171
173172 finally :
You can’t perform that action at this time.
0 commit comments