Skip to content

Commit af6c132

Browse files
authored
Update version for 0.1a2 release (#48)
1 parent 155afe2 commit af6c132

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "temporalio"
3-
version = "0.1a1"
3+
version = "0.1a2"
44
description = "Temporal.io Python SDK"
55
license = "MIT"
66
authors = ["Temporal Technologies Inc <sdk@temporal.io>"]

tests/worker/test_workflow.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1484,13 +1484,13 @@ async def run(self, param: MyDataClass) -> MyDataClass:
14841484
param = await workflow.execute_activity(
14851485
data_class_typed_activity,
14861486
param,
1487-
start_to_close_timeout=timedelta(seconds=5),
1487+
start_to_close_timeout=timedelta(seconds=30),
14881488
)
14891489
param.assert_expected()
14901490
param = await workflow.execute_local_activity(
14911491
data_class_typed_activity,
14921492
param,
1493-
start_to_close_timeout=timedelta(seconds=5),
1493+
start_to_close_timeout=timedelta(seconds=30),
14941494
)
14951495
param.assert_expected()
14961496
child_handle = await workflow.start_child_workflow(

0 commit comments

Comments
 (0)