Skip to content

Vb/merge 5.0.0 2 #1828

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

Closed
wants to merge 11 commits into from
Closed
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
4 changes: 2 additions & 2 deletions .github/workflows/lbox-develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: LBox Develop

on:
push:
branches: [develop]
branches: [develop, v6]
pull_request:
branches: [develop]
branches: [develop, v6]

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-package-develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Labelbox Python SDK Staging (Develop)

on:
push:
branches: [develop]
branches: [develop, v6]
pull_request:
branches: [develop]
branches: [develop, v6]

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
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 = '4.0.0'
release = '5.0.0'

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

Expand Down
10 changes: 10 additions & 0 deletions libs/labelbox/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
# Changelog
# Version 5.0.0 (2024-09-16)
## Updated
* Set tasks_remaining_count to None LabelingServiceDashboard if labeling has not started ([#1817](https://github.com/Labelbox/labelbox-python/pull/1817))
* Improve error messaging when creating LLM project with invalid dataset id parameter([#1799](https://github.com/Labelbox/labelbox-python/pull/1799))
## Removed
* BREAKING CHANGE SDK methods for exports v1([#1800](https://github.com/Labelbox/labelbox-python/pull/1800))
* BREAKING CHANGE Unused labelbox_v1 serialization package([#1803](https://github.com/Labelbox/labelbox-python/pull/1803))
## Fixed
* Cuid dependencies that cause a crash if numpy is not installed ([#1807](https://github.com/Labelbox/labelbox-python/pull/1807))

# Version 4.0.0 (2024-09-10)
## Added
* BREAKING CHANGE for pydantic V1 users: Converted SDK to use pydantic V2([#1738](https://github.com/Labelbox/labelbox-python/pull/1738))
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 = "4.0.0"
version = "5.0.0"
description = "Labelbox Python API"
authors = [{ name = "Labelbox", email = "engineering@labelbox.com" }]
dependencies = [
Expand Down
3 changes: 1 addition & 2 deletions libs/labelbox/src/labelbox/__init__.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
name = "labelbox"

__version__ = "4.0.0"
__version__ = "5.0.0"

from labelbox.client import Client
from labelbox.schema.project import Project
from labelbox.schema.model import Model
from labelbox.schema.model_config import ModelConfig
from labelbox.schema.bulk_import_request import BulkImportRequest
from labelbox.schema.annotation_import import (
MALPredictionImport,
MEAPredictionImport,
Expand Down
1 change: 0 additions & 1 deletion libs/labelbox/src/labelbox/data/serialization/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
from .ndjson import NDJsonConverter
from .coco import COCOConverter

This file was deleted.

78 changes: 0 additions & 78 deletions libs/labelbox/src/labelbox/data/serialization/coco/annotation.py

This file was deleted.

17 changes: 0 additions & 17 deletions libs/labelbox/src/labelbox/data/serialization/coco/categories.py

This file was deleted.

170 changes: 0 additions & 170 deletions libs/labelbox/src/labelbox/data/serialization/coco/converter.py

This file was deleted.

52 changes: 0 additions & 52 deletions libs/labelbox/src/labelbox/data/serialization/coco/image.py

This file was deleted.

Loading
Loading