Skip to content

Commit

Permalink
Bump python 1.7.0 => 1.9.0 (#569)
Browse files Browse the repository at this point in the history
  • Loading branch information
dandavison authored Jan 18, 2025
1 parent efab77d commit 4d72b74
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions features/reset/reset_and_delete/feature.go
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,8 @@ func CheckResult(ctx context.Context, r *harness.Runner, run client.WorkflowRun)
if err != nil {
return err
}
r.Assert.Equal(1, len(resp.GetExecutions()))
r.Assert.Equal(enums.WORKFLOW_EXECUTION_STATUS_TERMINATED, resp.GetExecutions()[0].Status)
r.Require.Equal(1, len(resp.GetExecutions()))
r.Require.Equal(enums.WORKFLOW_EXECUTION_STATUS_TERMINATED, resp.GetExecutions()[0].Status)

return err
}
Expand Down
2 changes: 1 addition & 1 deletion features/update/client_interceptor/feature.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,5 @@ async def start_workflow_update(
workflows=[Workflow],
check_result=check_result,
start=start,
additional_client_config=ClientConfig(interceptors=[MyClientInterceptor()]),
additional_client_config=ClientConfig(interceptors=[MyClientInterceptor()]), # type: ignore
)
2 changes: 1 addition & 1 deletion harness/python/feature.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def register_feature(
check_result: Optional[Callable[[Runner, WorkflowHandle], Awaitable[None]]] = None,
worker_config: WorkerConfig = WorkerConfig(),
data_converter: DataConverter = DataConverter.default,
additional_client_config: ClientConfig = ClientConfig(),
additional_client_config=ClientConfig(), # type: ignore
) -> None:
# No need to register in a sandbox
if workflow.unsafe.in_sandbox():
Expand Down
16 changes: 8 additions & 8 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ packages = [

[tool.poetry.dependencies]
python = "^3.8"
temporalio = "^1.7.0"
temporalio = "^1.9.0"

[tool.poetry.dev-dependencies]
mypy = "^0.961"
Expand Down

0 comments on commit 4d72b74

Please sign in to comment.