Skip to content

Vb/vbrodsky 3.74.0 #1692

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 = '3.73.0'
release = '3.74.0'

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

Expand Down
8 changes: 8 additions & 0 deletions libs/labelbox/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
# Changelog
# Version 3.74.0 (2024-06-24)
## Added
* Include predictions in export (#1689)
* Upsert label feedback method Client upsert_label_feedback() (#1684)

## Removed
* Removed deprecated class LabelList (#1691)

# Version 3.73.0 (2024-06-20)
## Added
* Conversational data row checks (#1678)
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 = "3.73.0"
version = "3.74.0"
description = "Labelbox Python API"
authors = [{ name = "Labelbox", email = "engineering@labelbox.com" }]
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__ = "3.73.0"
__version__ = "3.74.0"

from labelbox.client import Client
from labelbox.schema.project import Project
Expand Down
2 changes: 2 additions & 0 deletions libs/labelbox/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,8 @@ def execute(self, query=None, params=None, check_naming=True, **kwargs):
assert re.match(r"\s*(?:query|mutation) \w+PyApi",
query) is not None
self.queries.append((query, params))
if not kwargs.get('timeout'):
kwargs['timeout'] = 10.0 # reduce wait due to RERUNs
return super().execute(query, params, **kwargs)


Expand Down
Loading