Skip to content

Commit

Permalink
py: require hidapi>=0.14.0
Browse files Browse the repository at this point in the history
Fixing trezor/cython-hidapi#151, which
includes the fix libusb/hidapi#531, which
fixes a bug where on macOS, the interface number of all hid interfaces
would be 0. This lead to one BitBox02 multi being listed twice instead
of once (as it exposes a second interface for U2F).
  • Loading branch information
benma committed May 29, 2023
1 parent 8658620 commit 58e7ec3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions py/bitbox02/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## 6.2.0
- btc_sign: allow displaying BTC values in the 'sat' unit
- require hidapi 0.14.0 to fix a bug on macOS 13.3 which lists two BitBox02s instead of one

## 6.1.1
- Update protobuf dependency to >= 3.20, for better compatibility
Expand Down
2 changes: 1 addition & 1 deletion py/bitbox02/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def find_version() -> str:
],
},
install_requires=[
"hidapi>=0.7.99.post21",
"hidapi>=0.14.0",
"noiseprotocol>=0.3",
"protobuf>=3.20",
"ecdsa>=0.14",
Expand Down

0 comments on commit 58e7ec3

Please sign in to comment.