Skip to content

Commit

Permalink
Bump to 2022.5a1
Browse files Browse the repository at this point in the history
  • Loading branch information
rchui committed Nov 2, 2022
1 parent 025586d commit c7cd257
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions laminar/configurations/executors.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ class AWS:
"""Execute layers in AWS."""

@dataclass(frozen=True)
class BaseBatch:
class _BatchBase:
#: Amazon resource name (ARN) of an Batch job queue.
job_queue_arn: str
#: Amazon resource name (ARN) of an IAM role to attach to each Batch job.
Expand All @@ -162,7 +162,7 @@ class BaseBatch:
poll: float = 30.0

@dataclass(frozen=True)
class Batch(Executor, BaseBatch):
class Batch(Executor, _BatchBase):
"""Execute layers in AWS Batch.
Usage::
Expand Down
2 changes: 1 addition & 1 deletion laminar/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "2022.4a1"
VERSION = "2022.5a1"

0 comments on commit c7cd257

Please sign in to comment.