Pandas DataFrame.to_msgpack
and read_msgpack
are deprecated
#77
Labels
8000
DataFrame.to_msgpack
and read_msgpack
are deprecated
#77
Uh oh!
There was an error while loading. Please reload this page.
Steps to reproduce
When creating a
timeflux.nodes.zmq.Pub
node with themsgpack
serializer liketimeflux errors with
Issue
When initialized using
serialize='msgpack
ordeserialize='msgpack'
,timeflux.nodes.zmq.Pub
andtimeflux.nodes.zmq.Sub
respectively retrievetimeflux.core.message.msgpack_serialize
andtimeflux.core.message.msgpack_deserialize
methods, which in turn callpandas.DataFrame.to_msgpack
andpandas.read_msgpack
. These methods have been deprecated since Pandas 0.25 and were removed in newer versions:https://pandas.pydata.org/pandas-docs/version/0.25.0/reference/api/pandas.DataFrame.to_msgpack.html
https://pandas.pydata.org/pandas-docs/version/0.25.3/reference/api/pandas.read_msgpack.html
Proposed fixes
timeflux.core.message
to use the equivalent methods from pandas-msgpack (also no longer maintained)The text was updated successfully, but these errors were encountered: