basho / riak-python-client

The Riak client for Python.
Apache License 2.0
321 stars 183 forks source link

python 3.9 - collections module is not compatible with riak #545

Open agniszczotka opened 3 years ago

agniszczotka commented 3 years ago

in riak/codecs/init.py


from riak.codecs import Codec
Msg = collections.namedtuple('Msg',
                             ['msg_code', 'data', 'resp_code'],
                             verbose=False)

TypeError: namedtuple() got an unexpected keyword argument 'verbose'

kirantalluri commented 3 years ago

I am facing the same issue in Python 3.7, UPDATE: I cloned the master branch code and it is working fine.