Skip to content

Commit a0acccb

Browse files
committed
Constrain cbor2 to <5.8
Fixes #817 In the Sdist and Wheel test environments, the Jade test all failed with: qemu-system-xtensa: -nic user,model=open_eth,id=lo0,hostfwd=tcp:0.0.0.0:30121-:30121: Could not set up host forwarding rule 'tcp:0.0.0.0:30121-:30121 The other tests used a fixed version 5.6 of cbor2 which is why they were not affected.
1 parent ab896ae commit a0acccb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

poetry.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ mnemonic = "~0"
2424
typing-extensions = "^4.4"
2525
libusb1 = ">=1.7,<4"
2626
pyside2 = { version = "^5.14.0", optional = true, python = "<3.10" }
27-
cbor2 = "^5.4.6"
27+
cbor2 = ">=5.4.6,<5.8"
2828
pyserial = "^3.5"
2929
dataclasses = {version = "^0.8", python = ">=3.6,<3.7"}
3030
semver = "^3.0.1"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
modules = \
2727
['hwi', 'hwi-qt']
2828
install_requires = \
29-
['cbor2>=5.4.6,<6.0.0',
29+
['cbor2>=5.4.6,<5.8',
3030
'ecdsa>=0,<1',
3131
'hidapi>=0.14.0',
3232
'libusb1>=1.7,<4',

0 commit comments

Comments
 (0)