Skip to content

Commit 0f61973

Browse files
[Release] Synchronize for release
1 parent dbe7975 commit 0f61973

File tree

4 files changed

+15
-11
lines changed

4 files changed

+15
-11
lines changed

bank/backend/tests/account_servicer_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,4 +102,4 @@ async def test_send_welcome_email(self, mock_send_email) -> None:
102102
# We can expect two attempts to send the email, because Reboot always
103103
# re-runs methods twice in development mode in order to validate that
104104
# calls are idempotent.
105-
self.assertEquals(mock_send_email.call_count, 2)
105+
self.assertEqual(mock_send_email.call_count, 2)

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.22.0",
4+
"reboot==0.23.0",
55
]
66

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

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

requirements-dev.lock

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
# features: []
77
# all-features: false
88
# with-sources: false
9+
# generate-hashes: false
10+
# universal: false
911

1012
aiofiles==23.2.1
1113
# via reboot
@@ -22,12 +24,12 @@ attrs==24.2.0
2224
# via aiohttp
2325
certifi==2024.8.30
2426
# via kubernetes-asyncio
25-
cffi==1.16.0
27+
cffi==1.17.1
2628
# via cryptography
2729
# via reboot
2830
colorama==0.4.6
2931
# via reboot
30-
cryptography==42.0.2
32+
cryptography==44.0.0
3133
# via reboot
3234
deprecated==1.2.15
3335
# via opentelemetry-api
@@ -139,7 +141,7 @@ python-dateutil==2.9.0.post0
139141
pyyaml==6.0.2
140142
# via kubernetes-asyncio
141143
# via reboot
142-
reboot==0.22.0
144+
reboot==0.23.0
143145
setuptools==75.1.0
144146
# via grpcio-tools
145147
six==1.16.0
@@ -162,7 +164,7 @@ urllib3==1.26.15
162164
# via reboot
163165
uuid7==0.1.0
164166
# via reboot
165-
watchdog==4.0.0
167+
watchdog==6.0.0
166168
# via reboot
167169
websockets==13.1
168170
# via reboot

requirements.lock

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
# features: []
77
# all-features: false
88
# with-sources: false
9+
# generate-hashes: false
10+
# universal: false
911

1012
aiofiles==23.2.1
1113
# via reboot
@@ -22,12 +24,12 @@ attrs==24.2.0
2224
# via aiohttp
2325
certifi==2024.8.30
2426
# via kubernetes-asyncio
25-
cffi==1.16.0
27+
cffi==1.17.1
2628
# via cryptography
2729
# via reboot
2830
colorama==0.4.6
2931
# via reboot
30-
cryptography==42.0.2
32+
cryptography==44.0.0
3133
# via reboot
3234
deprecated==1.2.15
3335
# via opentelemetry-api
@@ -128,7 +130,7 @@ python-dateutil==2.9.0.post0
128130
pyyaml==6.0.2
129131
# via kubernetes-asyncio
130132
# via reboot
131-
reboot==0.22.0
133+
reboot==0.23.0
132134
setuptools==75.1.0
133135
# via grpcio-tools
134136
six==1.16.0
@@ -147,7 +149,7 @@ urllib3==1.26.15
147149
# via reboot
148150
uuid7==0.1.0
149151
# via reboot
150-
watchdog==4.0.0
152+
watchdog==6.0.0
151153
# via reboot
152154
websockets==13.1
153155
# via reboot

0 commit comments

Comments
 (0)