Skip to content

Commit f4c2f5c

Browse files
committed
Update project version to 2.3.1 and add registered_model field to Project class
1 parent 14b47ac commit f4c2f5c

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

datamint/entities/project.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
from datetime import datetime
44
import logging
55
from .base_entity import BaseEntity, MISSING_FIELD
6+
from typing import Any
67

78
logger = logging.getLogger(__name__)
89

@@ -43,9 +44,10 @@ class Project(BaseEntity):
4344
resource_count: int
4445
annotated_resource_count: int
4546
description: str | None
46-
ai_model_id: str | None
4747
viewable_ai_segs: list | None
4848
editable_ai_segs: list | None
49+
registered_model: Any | None = MISSING_FIELD
50+
ai_model_id: str | None = MISSING_FIELD
4951
closed_resources_count: int = MISSING_FIELD
5052
resources_to_annotate_count: int = MISSING_FIELD
5153
most_recent_experiment: str | None = MISSING_FIELD # ISO timestamp string

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "datamint"
33
description = "A library for interacting with the Datamint API, designed for efficient data management, processing and Deep Learning workflows."
4-
version = "2.3.0"
4+
version = "2.3.1"
55
dynamic = ["dependencies"]
66
requires-python = ">=3.10"
77
readme = "README.md"

0 commit comments

Comments
 (0)