Skip to content

Commit 9e83bc2

Browse files
zdebanoslinguini1
authored andcommitted
examples/shv-nxboot-updater: use downgraded pyshv==0.8.0
The problem probably arises from an incompatibility issue between the shv-libs4c and pyshv libraries. The fix is to downgrade the library for now and then revert back. Signed-off-by: Stepan Pressl <pressl.stepan@gmail.com>
1 parent 7f90139 commit 9e83bc2

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

examples/shv-nxboot-updater/update-script/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pyshv>=0.10.0
1+
pyshv==0.8.0
22
PyQt6
33
argparse
44
asyncio

examples/shv-nxboot-updater/update-script/shvconfirm.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@
1818
#
1919
############################################################################
2020

21-
from shv.rpcapi.valueclient import SHVValueClient
22-
from shv.rpcurl import RpcUrl
21+
from shv import RpcUrl, SHVValueClient
2322

2423

2524
async def shv_confirm(connection: str, path_to_root: str) -> None:

examples/shv-nxboot-updater/update-script/shvflasher.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,7 @@
2222
import io
2323
import zlib
2424

25-
from shv import SHVBytes
26-
from shv.rpcapi.valueclient import SHVValueClient
27-
from shv.rpcurl import RpcUrl
25+
from shv import RpcUrl, SHVBytes, SHVValueClient
2826

2927

3028
async def shv_flasher(

0 commit comments

Comments
 (0)