This is an automated email from the ASF dual-hosted git repository. vterentev pushed a commit to branch fix-playground-pydot in repository https://gitbox.apache.org/repos/asf/beam.git
commit 1edb25c35aeb03e33391d55bc1c4b8d289dd5bf2 Author: Vitaly Terentyev <[email protected]> AuthorDate: Tue Jan 27 17:48:58 2026 +0400 Install pydot --- .github/workflows/beam_Playground_CI_Nightly.yml | 1 + playground/infrastructure/requirements.txt | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/beam_Playground_CI_Nightly.yml b/.github/workflows/beam_Playground_CI_Nightly.yml index b4336334190..2d724a4d031 100644 --- a/.github/workflows/beam_Playground_CI_Nightly.yml +++ b/.github/workflows/beam_Playground_CI_Nightly.yml @@ -71,6 +71,7 @@ jobs: run: | cd $BEAM_ROOT_DIR/playground/infrastructure pip install -r requirements.txt + pip install pydot==1.4.2 - name: Get Beam latest release run: | BEAM_VERSION=$(curl -s https://api.github.com/repos/apache/beam/releases/latest | jq -r '.tag_name') diff --git a/playground/infrastructure/requirements.txt b/playground/infrastructure/requirements.txt index 93b4c4a44d9..8d4288b014c 100644 --- a/playground/infrastructure/requirements.txt +++ b/playground/infrastructure/requirements.txt @@ -16,6 +16,7 @@ # under the License. mock==4.0.3 +pydot==1.4.2 pytest==6.2.5 pytest-asyncio==0.18.2 pytest-mock==3.6.1 @@ -27,4 +28,4 @@ grpcio-tools==1.62.1 protobuf==4.25.8 google-cloud-datastore==2.11.0 -requests~=2.28.2 \ No newline at end of file +requests~=2.28.2
