Hello I am trying to install devstack on ubuntu 20.04 and I keep getting error
Cryptographydepricationwarning : int_from_bytes is deprecated use int.from_bytes instead
Does anyone knows how to solve it?
Thanks in advance
Hello I am trying to install devstack on ubuntu 20.04 and I keep getting error
Cryptographydepricationwarning : int_from_bytes is deprecated use int.from_bytes instead
Does anyone knows how to solve it?
Thanks in advance
you need to pin an older version of cryptography, e.g. cryptography<3.4, that will satisfy SecretStorage's dependency and not throw deprecation warnings. That means you should install cryptography<3.4 into your environment, and this version of cryptography should be picked up.
To Do so:
I referred to this similar issue