Skip to content

Commit d3787da

Browse files
[GithubActions] Update false false false false false SDK-Python 0.13.0 (#363)
Co-authored-by: slinkydeveloper <[email protected]>
1 parent 237e008 commit d3787da

File tree

8 files changed

+23
-8
lines changed

8 files changed

+23
-8
lines changed

python/patterns-use-cases/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ readme = "README.md"
99
requires-python = ">=3.11"
1010
dependencies = [
1111
"hypercorn",
12-
"restate-sdk[serde]>=0.12.0",
12+
"restate-sdk[serde]>=0.13.0",
1313
"pydantic",
1414
"httpx",
1515
"stripe",

python/templates/lambda/.claude/CLAUDE.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ ctx.service_send(
128128
Call a service without using the generated client, but just String names.
129129

130130
```python {"CODE_LOAD::python/src/develop/agentsmd/actions.py#request_response_generic"} theme={null}
131-
response = await ctx.generic_call(
131+
response_bytes = await ctx.generic_call(
132132
"MyObject", "my_handler", key="Mary", arg=json.dumps("Hi").encode("utf-8")
133133
)
134134
```
@@ -364,3 +364,8 @@ with restate.test_harness(app) as harness:
364364
restate_client = harness.ingress_client()
365365
print(restate_client.post("/greeter/greet", json="Alice").json())
366366
```
367+
368+
369+
---
370+
371+
> To find navigation and other pages in this documentation, fetch the llms.txt file at: https://docs.restate.dev/llms.txt

python/templates/lambda/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ readme = "README.md"
66
requires-python = ">=3.11"
77
dependencies = [
88
"pydantic>=2.10.6",
9-
"restate-sdk[serde]>=0.12.0",
9+
"restate-sdk[serde]>=0.13.0",
1010
]
1111

1212
[tool.hatch.build.targets.wheel]

python/templates/python/.claude/CLAUDE.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ ctx.service_send(
128128
Call a service without using the generated client, but just String names.
129129

130130
```python {"CODE_LOAD::python/src/develop/agentsmd/actions.py#request_response_generic"} theme={null}
131-
response = await ctx.generic_call(
131+
response_bytes = await ctx.generic_call(
132132
"MyObject", "my_handler", key="Mary", arg=json.dumps("Hi").encode("utf-8")
133133
)
134134
```
@@ -364,3 +364,8 @@ with restate.test_harness(app) as harness:
364364
restate_client = harness.ingress_client()
365365
print(restate_client.post("/greeter/greet", json="Alice").json())
366366
```
367+
368+
369+
---
370+
371+
> To find navigation and other pages in this documentation, fetch the llms.txt file at: https://docs.restate.dev/llms.txt

python/templates/python/.cursor/rules/AGENTS.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ ctx.service_send(
128128
Call a service without using the generated client, but just String names.
129129

130130
```python {"CODE_LOAD::python/src/develop/agentsmd/actions.py#request_response_generic"} theme={null}
131-
response = await ctx.generic_call(
131+
response_bytes = await ctx.generic_call(
132132
"MyObject", "my_handler", key="Mary", arg=json.dumps("Hi").encode("utf-8")
133133
)
134134
```
@@ -364,3 +364,8 @@ with restate.test_harness(app) as harness:
364364
restate_client = harness.ingress_client()
365365
print(restate_client.post("/greeter/greet", json="Alice").json())
366366
```
367+
368+
369+
---
370+
371+
> To find navigation and other pages in this documentation, fetch the llms.txt file at: https://docs.restate.dev/llms.txt

python/templates/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ requires-python = ">=3.11"
77
dependencies = [
88
"hypercorn>=0.17.3",
99
"pydantic>=2.10.6",
10-
"restate-sdk[serde]>=0.12.0",
10+
"restate-sdk[serde]>=0.13.0",
1111
]
1212

1313
[tool.hatch.build.targets.wheel]

python/tutorials/tour-of-orchestration-python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ requires-python = ">=3.11"
77
dependencies = [
88
"hypercorn>=0.17.3",
99
"pydantic>=2.10.6",
10-
"restate-sdk[serde]>=0.12.0",
10+
"restate-sdk[serde]>=0.13.0",
1111
]
1212

1313
[tool.hatch.build.targets.wheel]

python/tutorials/tour-of-workflows-python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies = [
88
"hypercorn>=0.17.3",
99
"pydantic>=2.10.6",
1010
"httpx",
11-
"restate-sdk[serde]>=0.12.0",
11+
"restate-sdk[serde]>=0.13.0",
1212
]
1313

1414
[tool.hatch.build.targets.wheel]

0 commit comments

Comments
 (0)