I have a question regarding the hiredis dependency in redis-py.
Is hiredis a required dependency for using the package, or is it optional?
I have an implicit dependency on redis-py and I've encountered an issue with a locked version of hiredis in my requirements.txt
Since redis-py updates automatically as it is implicit, it can lead to a version mismatch where redis-py is updated, but hiredis remains locked to an older version, causing an unsynchronized state.
Could you provide guidance on how to handle this situation and avoid any conflicts arising from the version lock?