Skip to content

Commit

Permalink
Make galaxy_version in model JobBaseModel optional
Browse files Browse the repository at this point in the history
  • Loading branch information
heisner-tillman committed Dec 15, 2023
1 parent 6aa1dfc commit c4abdfb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/schema/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -1854,7 +1854,7 @@ class JobBaseModel(Model):
)
create_time: datetime = CreateTimeField
update_time: datetime = UpdateTimeField
galaxy_version: str = Field(
galaxy_version: Optional[str] = Field(
...,
title="Galaxy Version",
description="The (major) version of Galaxy used to create this job.",
Expand Down

0 comments on commit c4abdfb

Please sign in to comment.