diff --git a/py/bitbox02/CHANGELOG.md b/py/bitbox02/CHANGELOG.md index efb832912d..38fdf9aede 100644 --- a/py/bitbox02/CHANGELOG.md +++ b/py/bitbox02/CHANGELOG.md @@ -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 diff --git a/py/bitbox02/setup.py b/py/bitbox02/setup.py index 20cfc48cb9..a4356e4d21 100644 --- a/py/bitbox02/setup.py +++ b/py/bitbox02/setup.py @@ -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",