Skip to content

Commit

Permalink
Add 2 new fields to Experiment spec
Browse files Browse the repository at this point in the history
  • Loading branch information
epwalsh committed May 29, 2024
1 parent 86acddf commit d7b0279
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ use patch releases for compatibility fixes instead.

## Unreleased

### Added

- Added `Experiment.canceled` and `Experiment.canceled_for` fields.

## [v1.26.13](https://github.com/allenai/beaker-py/releases/tag/v1.26.13) - 2024-05-28

### Added
Expand Down
2 changes: 2 additions & 0 deletions beaker/data_model/experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ class Experiment(BaseModel):
description: Optional[str] = None
author: Account
created: datetime
canceled: Optional[datetime] = None
canceled_for: Optional[str] = None
workspace_ref: WorkspaceRef
jobs: Tuple[Job, ...] = Field(default_factory=tuple)

Expand Down

0 comments on commit d7b0279

Please sign in to comment.