Skip to content

Commit

Permalink
Release 3.47.1 (#1115)
Browse files Browse the repository at this point in the history
  • Loading branch information
kkim-labelbox authored May 25, 2023
2 parents f6fe660 + 938c3cc commit be9e47e
Show file tree
Hide file tree
Showing 19 changed files with 21 additions and 17 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

# Version 3.47.1 (2023-05-24)
## Fixed
* Loading of the ndjson parser when optional [data] libraries (geojson etc.) are not installed

# Version 3.47.0 (2023-05-23)
## Added
* Support for interpolated frames to export v2
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
copyright = '2021, Labelbox'
author = 'Labelbox'

release = '3.47.0'
release = '3.47.1'

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

Expand Down
2 changes: 1 addition & 1 deletion labelbox/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = "labelbox"
__version__ = "3.47.0"
__version__ = "3.47.1"

from backports.datetime_fromisoformat import MonkeyPatch

Expand Down
2 changes: 1 addition & 1 deletion labelbox/data/serialization/labelbox_v1/converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Any, Dict, Generator, Iterable, Union
import logging

from labelbox.data.serialization.ndjson import parser
from labelbox import parser
import requests
from copy import deepcopy
from requests.exceptions import HTTPError
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion labelbox/schema/annotation_import.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from typing import Any, BinaryIO, Dict, List, Union, TYPE_CHECKING, cast

import backoff
from labelbox.data.serialization.ndjson import parser
from labelbox import parser
import requests
from tqdm import tqdm # type: ignore

Expand Down
2 changes: 1 addition & 1 deletion labelbox/schema/batch.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from labelbox.orm.model import Entity, Field, Relationship
from labelbox.exceptions import LabelboxError, ResourceNotFoundError
from io import StringIO
from labelbox.data.serialization.ndjson import parser
from labelbox import parser
import requests
import logging
import time
Expand Down
2 changes: 1 addition & 1 deletion labelbox/schema/bulk_import_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from pathlib import Path
import pydantic
import backoff
from labelbox.data.serialization.ndjson import parser
from labelbox import parser
import requests
from pydantic import BaseModel, root_validator, validator
from typing_extensions import Literal
Expand Down
2 changes: 1 addition & 1 deletion labelbox/schema/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from collections.abc import Iterable
import time

from labelbox.data.serialization.ndjson import parser
from labelbox import parser
from itertools import islice

from concurrent.futures import ThreadPoolExecutor, as_completed
Expand Down
2 changes: 1 addition & 1 deletion labelbox/schema/model_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import time
import logging
import requests
from labelbox.data.serialization.ndjson import parser
from labelbox import parser
from enum import Enum

from labelbox.pagination import PaginatedCollection
Expand Down
2 changes: 1 addition & 1 deletion labelbox/schema/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from typing import TYPE_CHECKING, Any, Dict, Iterable, List, Optional, Union
from urllib.parse import urlparse

from labelbox.data.serialization.ndjson import parser
from labelbox import parser
import requests

from labelbox import utils
Expand Down
2 changes: 1 addition & 1 deletion labelbox/schema/task.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import requests
import time
from typing import TYPE_CHECKING, Callable, Optional, Dict, Any, List, Union
from labelbox.data.serialization.ndjson import parser
from labelbox import parser

from labelbox.exceptions import ResourceNotFoundError
from labelbox.orm.db_object import DbObject
Expand Down
2 changes: 1 addition & 1 deletion tests/data/serialization/ndjson/test_video.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from labelbox.data.annotation_types.label import Label
from labelbox.data.annotation_types.video import VideoObjectAnnotation
from labelbox.data.serialization.ndjson import parser
from labelbox import parser

from labelbox.data.serialization.ndjson.converter import NDJsonConverter
from labelbox.schema.annotation_import import MALPredictionImport
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/annotation_import/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import time
import requests

from labelbox.data.serialization.ndjson import parser
from labelbox import parser

from typing import Type
from labelbox.schema.labeling_frontend import LabelingFrontend
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import uuid
from labelbox.data.serialization.ndjson import parser
from labelbox import parser
import pytest
import random
from labelbox.data.annotation_types.annotation import ObjectAnnotation
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import uuid
from labelbox.data.serialization.ndjson import parser
from labelbox import parser
import pytest

from labelbox.schema.annotation_import import AnnotationImportState, MEAPredictionImport
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import pytest

from labelbox.data.serialization.ndjson import parser
from labelbox import parser
from pytest_cases import parametrize, fixture_ref

from labelbox.exceptions import MALValidationError
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import uuid
from labelbox.data.serialization.ndjson import parser
from labelbox import parser
import pytest

from labelbox.schema.annotation_import import AnnotationImportState, MEAPredictionImport
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/test_ndjson_parsing.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import ast
from io import StringIO

from labelbox.data.serialization.ndjson import parser
from labelbox import parser


def test_loads(ndjson_content):
Expand Down

0 comments on commit be9e47e

Please sign in to comment.