Skip to content

Commit

Permalink
fix: Pin protobuf version to avoid seg fault on some machines
Browse files Browse the repository at this point in the history
Signed-off-by: Danny C <d.chiao@gmail.com>
  • Loading branch information
adchia committed Aug 28, 2023
1 parent 1695c13 commit 028cc20
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -353,7 +353,7 @@ kill-trino-locally:
cd ${ROOT_DIR}; docker stop trino

install-protoc-dependencies:
pip install --ignore-installed protobuf grpcio-tools==1.47.0 mypy-protobuf==3.1.0
pip install --ignore-installed protobuf==4.23.4 grpcio-tools==1.47.0 mypy-protobuf==3.1.0

install-feast-ci-locally:
pip install -e ".[ci]"
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -55,7 +55,8 @@
"pandas>=1.4.3,<2",
# For some reason pandavro higher than 1.5.* only support pandas less than 1.3.
"pandavro~=1.5.0",
"protobuf<5,>3.20",
# Higher than 4.23.4 seems to cause a seg fault
"protobuf<4.23.4,>3.20",
"proto-plus>=1.20.0,<2",
"pyarrow>=4,<12",
"pydantic>=1,<2",
Expand Down

0 comments on commit 028cc20

Please sign in to comment.