-
Notifications
You must be signed in to change notification settings - Fork 52
broken dependencies #20
Comments
@MacCruiskeen Please submit a pull request to remediate this so that others may benefit |
I was facing the similar issue can u please help me in resolving it error:C:\Python_scripts\ldap_intigration\venv\Scripts\python.exe C:/Python_scripts/ldap_intigration/ldap_app/yosai_demo.py |
I've been trying to get this working and I think you have some issues with breaking changes in your dependencies. Right now I am stuck with the CBOR serializer not working. When Yosai is passing the session object to the serializer, I get
TypeError: init() got an unexpected keyword argument 'encoders'
What seems to be happening is that your serializer is creating encoders from the session object, and passing them to CBOR2, but CBOR2 no longer wants them, it will pull the encoders from its own default list. This is described in the CBOR2 docs as a backward incompatible change in the library.
The text was updated successfully, but these errors were encountered: