With merge of #77 we had to fix the secondary dependence of protobuf (dependency of streamlit) to:
The new version 4 of protobuf brought breaking changes including incompability to code generated by protobuf < 4.0, which seems to be the case for streamlit==1.9.0, which we currently use. (Chagelog of Google: https://developers.google.com/protocol-buffers/docs/news/2022-05-06#python-updates)
We need to check the upcoming versions of streamlit if we can remove the line in the requirements and update protobuf.
With merge of #77 we had to fix the secondary dependence of
protobuf(dependency ofstreamlit) to:RUINSapp/requirements.txt
Line 14 in 7f5781a
The new version
4of protobuf brought breaking changes including incompability to code generated byprotobuf < 4.0, which seems to be the case forstreamlit==1.9.0, which we currently use. (Chagelog of Google: https://developers.google.com/protocol-buffers/docs/news/2022-05-06#python-updates)We need to check the upcoming versions of
streamlitif we can remove the line in the requirements and update protobuf.