Skip to content

Commit 5d181da

Browse files
committed
make somesy project input version optional
1 parent a98ad96 commit 5d181da

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/somesy/core/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -650,7 +650,7 @@ def at_least_one_author(self) -> ProjectMetadata:
650650

651651
name: Annotated[str, Field(description="Project name.")]
652652
description: Annotated[str, Field(description="Project description.")]
653-
version: Annotated[str, Field(description="Project version.")]
653+
version: Annotated[Optional[str], Field(description="Project version.")] = None
654654
license: Annotated[LicenseEnum, Field(description="SPDX License string.")]
655655

656656
homepage: Annotated[

0 commit comments

Comments
 (0)