Skip to content

Commit ca086ab

Browse files
[Release] Synchronize for release (#112)
1 parent 3b27c56 commit ca086ab

File tree

4 files changed

+25
-14
lines changed

4 files changed

+25
-14
lines changed

bank/backend/tests/account_servicer_test.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,8 @@ async def asyncTearDown(self) -> None:
2222
await self.rbt.stop()
2323

2424
async def test_basics(self) -> None:
25-
context = self.rbt.create_external_context(name=f"test-{self.id()}")
26-
2725
await self.rbt.up(Application(servicers=[AccountServicer]))
26+
context = self.rbt.create_external_context(name=f"test-{self.id()}")
2827

2928
# Create the state machine by calling its constructor. The fact that the
3029
# state machine _has_ a constructor means that this step is required

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[project]
22
requires-python = ">= 3.10"
33
dependencies = [
4-
"reboot==0.43.0",
4+
"reboot==0.44.0",
55
]
66

77
[tool.rye]
88
dev-dependencies = [
99
"mypy==1.18.1",
1010
"pytest>=7.4.2",
1111
"types-protobuf>=4.24.0.20240129",
12-
"reboot==0.43.0",
12+
"reboot==0.44.0",
1313
]
1414

1515
# This project only uses `rye` to provide `python` and its dependencies, so

requirements-dev.lock

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99

1010
aiofiles==23.2.1
1111
# via reboot
12-
aiohappyeyeballs==2.4.1
12+
aiohappyeyeballs==2.6.1
1313
# via aiohttp
14-
aiohttp==3.10.5
14+
aiohttp==3.13.2
1515
# via kubernetes-asyncio
1616
# via reboot
17-
aiosignal==1.3.1
17+
aiosignal==1.4.0
1818
# via aiohttp
1919
annotated-types==0.7.0
2020
# via pydantic
@@ -24,6 +24,8 @@ async-timeout==4.0.3
2424
# via aiohttp
2525
attrs==24.2.0
2626
# via aiohttp
27+
bitarray==3.8.0
28+
# via reboot
2729
certifi==2024.8.30
2830
# via kubernetes-asyncio
2931
cffi==1.17.1
@@ -135,6 +137,9 @@ pathspec==0.12.1
135137
# via reboot
136138
pluggy==1.5.0
137139
# via pytest
140+
propcache==0.4.1
141+
# via aiohttp
142+
# via yarl
138143
protobuf==5.28.3
139144
# via googleapis-common-protos
140145
# via grpcio-health-checking
@@ -163,7 +168,7 @@ python-dateutil==2.9.0.post0
163168
pyyaml==6.0.2
164169
# via kubernetes-asyncio
165170
# via reboot
166-
reboot==0.43.0
171+
reboot==0.44.0
167172
setuptools==75.1.0
168173
# via grpcio-tools
169174
six==1.16.0
@@ -183,6 +188,7 @@ tomli==2.0.1
183188
types-protobuf==5.28.0.20240924
184189
# via mypy-protobuf
185190
typing-extensions==4.9.0
191+
# via aiosignal
186192
# via anyio
187193
# via fastapi
188194
# via multidict
@@ -209,7 +215,7 @@ wrapt==1.16.0
209215
# via deprecated
210216
# via opentelemetry-instrumentation
211217
# via opentelemetry-instrumentation-grpc
212-
yarl==1.12.1
218+
yarl==1.22.0
213219
# via aiohttp
214220
zipp==3.21.0
215221
# via importlib-metadata

requirements.lock

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99

1010
aiofiles==23.2.1
1111
# via reboot
12-
aiohappyeyeballs==2.4.1
12+
aiohappyeyeballs==2.6.1
1313
# via aiohttp
14-
aiohttp==3.10.5
14+
aiohttp==3.13.2
1515
# via kubernetes-asyncio
1616
# via reboot
17-
aiosignal==1.3.1
17+
aiosignal==1.4.0
1818
# via aiohttp
1919
annotated-types==0.7.0
2020
# via pydantic
@@ -24,6 +24,8 @@ async-timeout==4.0.3
2424
# via aiohttp
2525
attrs==24.2.0
2626
# via aiohttp
27+
bitarray==3.8.0
28+
# via reboot
2729
certifi==2024.8.30
2830
# via kubernetes-asyncio
2931
cffi==1.17.1
@@ -125,6 +127,9 @@ packaging==23.1
125127
# via reboot
126128
pathspec==0.12.1
127129
# via reboot
130+
propcache==0.4.1
131+
# via aiohttp
132+
# via yarl
128133
protobuf==5.28.3
129134
# via googleapis-common-protos
130135
# via grpcio-health-checking
@@ -152,7 +157,7 @@ python-dateutil==2.9.0.post0
152157
pyyaml==6.0.2
153158
# via kubernetes-asyncio
154159
# via reboot
155-
reboot==0.43.0
160+
reboot==0.44.0
156161
setuptools==75.1.0
157162
# via grpcio-tools
158163
six==1.16.0
@@ -169,6 +174,7 @@ tabulate==0.9.0
169174
types-protobuf==5.28.0.20240924
170175
# via mypy-protobuf
171176
typing-extensions==4.9.0
177+
# via aiosignal
172178
# via anyio
173179
# via fastapi
174180
# via multidict
@@ -194,7 +200,7 @@ wrapt==1.16.0
194200
# via deprecated
195201
# via opentelemetry-instrumentation
196202
# via opentelemetry-instrumentation-grpc
197-
yarl==1.12.1
203+
yarl==1.22.0
198204
# via aiohttp
199205
zipp==3.21.0
200206
# via importlib-metadata

0 commit comments

Comments
 (0)