You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a breaking change in itsdangnerous 1.1 (released on Oct 26, 2018). Namely, there is no SigningAlgorithm anymore, which is used by bitcoinaverage PIP lib (_base_client.py).
Users can install an older version (itsdangerous==0.24 for instance) and that would fix the problem. However, this needs to be fixed in the library as well.
Cheers!
The text was updated successfully, but these errors were encountered:
This is a simple fix:
I would fork and submit a push request myself, but I don't see a repo for the actual library.
File: bitcoinaverage\clients_base_client.py
Change import statements to:
from itsdangerous import Signer, want_bytes
from itsdangerous.signer import SigningAlgorithm
There is a breaking change in
itsdangnerous 1.1
(released on Oct 26, 2018). Namely, there is noSigningAlgorithm
anymore, which is used bybitcoinaverage
PIP lib (_base_client.py
).Users can install an older version (
itsdangerous==0.24
for instance) and that would fix the problem. However, this needs to be fixed in the library as well.Cheers!
The text was updated successfully, but these errors were encountered: