Skip to content

Commit 7433244

Browse files
committed
docs: remove protobuf generation instructions
1 parent 694b23a commit 7433244

2 files changed

Lines changed: 1 addition & 11 deletions

File tree

CONTRIBUTING.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,6 @@ You can run the full code generation using the following command or use the indi
3737
pixi run codegen
3838
```
3939

40-
## Protobuf stubs
41-
42-
Run the proto codegen only:
43-
44-
```
45-
pixi run codegen-proto
46-
```
47-
4840
## Antlr grammar
4941

5042
Substrait uses antlr grammar to derive output types of extension functions. Make sure java is installed and ANTLR_JAR environment variable is set. Take a look at .devcontainer/Dockerfile for example setup.

pyproject.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,10 @@ update-substrait = [ { task = "update-submodule" }, { task = "codegen" }]
5656

5757
update-submodule = "./update_submodule.sh"
5858

59-
codegen = [{ task = "antlr" }, { task = "codegen-proto" }, { task = "codegen-extensions" }]
59+
codegen = [{ task = "antlr" }, { task = "codegen-extensions" }]
6060

6161
check-codegen = "./check_codegen.sh"
6262

63-
codegen-proto = "./gen_proto.sh"
64-
6563
antlr = """
6664
cd third_party/substrait/grammar \
6765
&& antlr4 -o ../../../src/substrait/gen/antlr -Dlanguage=Python3 SubstraitType.g4 \

0 commit comments

Comments
 (0)