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 16
16
project = 'Python SDK reference'
17
17
copyright = '2024, Labelbox'
18
18
author = 'Labelbox'
19
- release = '3.76 .0'
19
+ release = '3.77 .0'
20
20
21
21
# -- General configuration ---------------------------------------------------
22
22
Original file line number Diff line number Diff line change 1
1
# 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
+
2
14
# Version 3.76.0 (2024-07-29)
3
15
# Added
4
16
* Added Project get_labeling_service(), request_labeling_service() and get_labeling_service_status()
Original file line number Diff line number Diff line change 1
1
[project ]
2
2
name = " labelbox"
3
- version = " 3.76 .0"
3
+ version = " 3.77 .0"
4
4
description = " Labelbox Python API"
5
5
authors = [{ name = " Labelbox" , email = " engineering@labelbox.com" }]
6
6
dependencies = [
Original file line number Diff line number Diff line change 1
1
name = "labelbox"
2
2
3
- __version__ = "3.76 .0"
3
+ __version__ = "3.77 .0"
4
4
5
5
from labelbox .client import Client
6
6
from 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):
167
167
168
168
user_groups_post_deletion = list (UserGroup (client ).get_user_groups ())
169
169
170
- assert len (user_groups_post_deletion ) > 0
171
170
assert len (user_groups_post_deletion ) == len (user_groups_post_creation ) - 1
172
171
173
172
finally :
You can’t perform that action at this time.
0 commit comments