diff --git a/docs/conf.py b/docs/conf.py index 7c87fb103..57958bbc7 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -16,7 +16,7 @@ project = 'Python SDK reference' copyright = '2024, Labelbox' author = 'Labelbox' -release = '3.73.0' +release = '3.74.0' # -- General configuration --------------------------------------------------- diff --git a/libs/labelbox/CHANGELOG.md b/libs/labelbox/CHANGELOG.md index c05784531..cb48ac5ee 100644 --- a/libs/labelbox/CHANGELOG.md +++ b/libs/labelbox/CHANGELOG.md @@ -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) diff --git a/libs/labelbox/pyproject.toml b/libs/labelbox/pyproject.toml index 1df854f80..7e17a83e8 100644 --- a/libs/labelbox/pyproject.toml +++ b/libs/labelbox/pyproject.toml @@ -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 = [ diff --git a/libs/labelbox/src/labelbox/__init__.py b/libs/labelbox/src/labelbox/__init__.py index f45f0dc3c..4cd3b4390 100644 --- a/libs/labelbox/src/labelbox/__init__.py +++ b/libs/labelbox/src/labelbox/__init__.py @@ -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 diff --git a/libs/labelbox/tests/conftest.py b/libs/labelbox/tests/conftest.py index 80229e319..476ab4a33 100644 --- a/libs/labelbox/tests/conftest.py +++ b/libs/labelbox/tests/conftest.py @@ -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)