Skip to content

Commit 70f30b0

Browse files
authored
v.3.77.0. release prep PR (#1764)
1 parent 255c83e commit 70f30b0

File tree

5 files changed

+15
-4
lines changed

5 files changed

+15
-4
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 = '3.76.0'
19+
release = '3.77.0'
2020

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

libs/labelbox/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
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()

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 = "3.76.0"
3+
version = "3.77.0"
44
description = "Labelbox Python API"
55
authors = [{ name = "Labelbox", email = "engineering@labelbox.com" }]
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__ = "3.76.0"
3+
__version__ = "3.77.0"
44

55
from labelbox.client import Client
66
from labelbox.schema.project import Project

libs/labelbox/tests/integration/schema/test_user_group.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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:

0 commit comments

Comments
 (0)