Skip to content

Commit c73d020

Browse files
committed
Bump version to 0.13.0rc1
1 parent 5dd251f commit c73d020

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
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 = "viam-sdk"
3-
version = "0.12.0"
3+
version = "0.13.0rc1"
44
description = "Viam Robotics Python SDK"
55
authors = [ "Naveed <[email protected]>" ]
66
license = "Apache-2.0"

tests/test_board.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -175,15 +175,11 @@ async def test_get_digital_interrupt_value(self, board: MockBoard, service: Boar
175175
async with ChannelFor([service]) as channel:
176176
client = BoardServiceStub(channel)
177177

178-
request = GetDigitalInterruptValueRequest(
179-
board_name=board.name, digital_interrupt_name="dne"
180-
)
178+
request = GetDigitalInterruptValueRequest(board_name=board.name, digital_interrupt_name="dne")
181179
with pytest.raises(GRPCError, match=r".*Status.NOT_FOUND.*"):
182180
await client.GetDigitalInterruptValue(request)
183181

184-
request = GetDigitalInterruptValueRequest(
185-
board_name=board.name, digital_interrupt_name="interrupt1"
186-
)
182+
request = GetDigitalInterruptValueRequest(board_name=board.name, digital_interrupt_name="interrupt1")
187183
response: GetDigitalInterruptValueResponse = await client.GetDigitalInterruptValue(request)
188184
assert response.value == 0
189185

0 commit comments

Comments
 (0)