Skip to content

Commit da2df40

Browse files
authored
Merge pull request #456 from deepdoctection/version_1.2.10
Version 1.2.10
2 parents 32e599f + b5a346e commit da2df40

8 files changed

Lines changed: 10 additions & 7 deletions

File tree

docker/gpu/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ARG USER_UID=1001
66
ARG USER_GID=1001
77

88
# Define version variables
9-
ARG DEEPDOCTECTION_VERSION=1.2.9
9+
ARG DEEPDOCTECTION_VERSION=1.2.10
1010
ENV DEEPDOCTECTION_VERSION=${DEEPDOCTECTION_VERSION}
1111

1212
# Install dependencies

packages/dd_core/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "dd-core"
7-
version = "1.2.9"
7+
version = "1.2.10"
88
authors = [
99
{name = "Dr. Janis Meyer"}
1010
]

packages/dd_core/src/dd_core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
from .utils.file_utils import _LazyModule
3434

35-
__version__ = "1.2.9"
35+
__version__ = "1.2.10"
3636
_IMPORT_STRUCTURE = {
3737
"dataflow": [
3838
"DataFlowReentrantGuard",

packages/dd_core/src/dd_core/datapoint/image.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1041,6 +1041,9 @@ def _pop_by_annotation_id(
10411041
self, annotation_id: str, location_dict: AnnotationMap
10421042
) -> Union[ImageAnnotation, CategoryAnnotation, None]:
10431043
image_annotation_id = location_dict.image_annotation_id
1044+
summary_key = location_dict.summary_key
1045+
if not image_annotation_id and summary_key is not None:
1046+
return self.summary.pop_sub_category(summary_key)
10441047
annotations = self.get_annotation(annotation_ids=image_annotation_id)
10451048
if not annotations:
10461049
return None

packages/dd_datasets/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "dd-datasets"
7-
version = "1.2.9"
7+
version = "1.2.10"
88
authors = [
99
{name = "Dr. Janis Meyer"}
1010
]

packages/dd_datasets/src/dd_datasets/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
from dd_core.utils.file_utils import _LazyModule, pytorch_available
2626

27-
__version__ = "1.2.9"
27+
__version__ = "1.2.10"
2828
_IMPORT_STRUCTURE = {
2929
"base": ["DatasetBase", "SplitDataFlow", "MergeDataset", "DatasetCard", "CustomDataset"],
3030
"dataflow_builder": [

packages/deepdoctection/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "deepdoctection"
7-
version = "1.2.9"
7+
version = "1.2.10"
88
authors = [
99
{name = "Dr. Janis Meyer"}
1010
]

packages/deepdoctection/src/deepdoctection/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from dd_core.utils.file_utils import _LazyModule
1313
from dd_core.utils.logger import LoggingRecord, logger
1414

15-
__version__ = "1.2.9"
15+
__version__ = "1.2.10"
1616
_IMPORT_STRUCTURE = {
1717
"analyzer": ["config_sanity_checks", "get_dd_analyzer", "ServiceFactory", "update_cfg_from_defaults"],
1818
"eval": [

0 commit comments

Comments
 (0)