-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Small example improvement using pyarrow assertion
- Loading branch information
1 parent
54d1bc5
commit 5c0c8c5
Showing
4 changed files
with
29 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,24 @@ | ||
nodes: | ||
- id: terminal-input | ||
build: pip install -e ../../node-hub/terminal-input | ||
path: dynamic | ||
- id: pyarrow-sender | ||
build: pip install -e ../../node-hub/pyarrow-sender | ||
path: pyarrow-sender | ||
outputs: | ||
- data | ||
inputs: | ||
echo: dora-echo/echo | ||
env: | ||
DATA: "[1, 2, 3, 4, 5]" | ||
|
||
- id: dora-echo | ||
build: pip install -e ../../node-hub/dora-echo | ||
path: dora-echo | ||
inputs: | ||
echo: terminal-input/data | ||
data: pyarrow-sender/data | ||
outputs: | ||
- echo | ||
- data | ||
|
||
- id: terminal-print | ||
build: cargo build -p terminal-print | ||
path: dynamic | ||
- id: pyarrow-assert | ||
build: pip install -e ../../node-hub/pyarrow-assert | ||
path: pyarrow-assert | ||
inputs: | ||
echo: dora-echo/echo | ||
data: dora-echo/data | ||
env: | ||
DATA: "[1, 2, 3, 4, 5]" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters