Skip to content

Commit 631544a

Browse files
authored
Merge branch 'temporalio:main' into main
2 parents e9466c6 + b4cf80e commit 631544a

File tree

4 files changed

+1970
-1887
lines changed

4 files changed

+1970
-1887
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @temporalio/sdk

polling/periodic_sequence/workflows.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,5 @@ async def run(self, name: str) -> str:
3838
except ActivityError:
3939
workflow.logger.error("Activity failed, retrying in 1 seconds")
4040
await asyncio.sleep(1)
41-
workflow.continue_as_new(name)
4241

43-
raise Exception("Polling failed after all attempts")
42+
workflow.continue_as_new(name)

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = [{ name = "Temporal Technologies Inc", email = "sdk@temporal.io" }]
66
requires-python = "~=3.9"
77
readme = "README.md"
88
license = "MIT"
9-
dependencies = ["temporalio>=1.10.0,<2"]
9+
dependencies = ["temporalio>=1.11.1,<2"]
1010

1111
[project.urls]
1212
Homepage = "https://github.com/temporalio/samples-python"
@@ -34,7 +34,7 @@ encryption = [
3434
"cryptography>=38.0.1,<39",
3535
"aiohttp>=3.8.1,<4",
3636
]
37-
gevent = ["gevent>=23.9.1,<24 ; python_version >= '3.8'"]
37+
gevent = ["gevent==25.4.2 ; python_version >= '3.8'"]
3838
langchain = [
3939
"langchain>=0.1.7,<0.2 ; python_version >= '3.8.1' and python_version < '4.0'",
4040
"langchain-openai>=0.0.6,<0.0.7 ; python_version >= '3.8.1' and python_version < '4.0'",

0 commit comments

Comments
 (0)