You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Working with this project is 90% fighting old dependencies. For instance, right now I'm trying to run a client in a fast-api docker and run into this obscure issue: protocolbuffers/protobuf#5435.
Previously I've had to:
Figure out which python version you developed this project for (because pyarrow 0.14 is broken for newer versions)
Discover pyenv
Install and configure pyenv
Realise that protoc and protobuf are two different things
Change the protoc version in common/scripts/install-dependencies.sh to match protobuf
Remove the preinstalled protoc version in the hydroproject/base docker image such that my modified install-dependencies.sh would install the correct version
The text was updated successfully, but these errors were encountered:
Working with this project is 90% fighting old dependencies. For instance, right now I'm trying to run a client in a fast-api docker and run into this obscure issue: protocolbuffers/protobuf#5435.
Previously I've had to:
pyarrow 0.14
is broken for newer versions)pyenv
pyenv
protoc
andprotobuf
are two different thingscommon/scripts/install-dependencies.sh
to match protobufhydroproject/base
docker image such that my modifiedinstall-dependencies.sh
would install the correct versionThe text was updated successfully, but these errors were encountered: