This is an automated email from the ASF dual-hosted git repository.
martijnvisser pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/master by this push:
new 1a45d0b28a4 [hotfix][docs] Remove manual venv activation from docs.sh
1a45d0b28a4 is described below
commit 1a45d0b28a484f768e1d6a7ad2f98247cd877a0c
Author: Martijn Visser <[email protected]>
AuthorDate: Thu Feb 19 10:07:11 2026 +0100
[hotfix][docs] Remove manual venv activation from docs.sh
The Makefile now auto-detects uv and uses `uv run` directly,
so the manual activate/deactivate of the uv virtualenv is no
longer needed for the Chinese docs build step.
---
.github/workflows/docs.sh | 3 ---
1 file changed, 3 deletions(-)
diff --git a/.github/workflows/docs.sh b/.github/workflows/docs.sh
index 8adcd4588a7..dbf9ee8e2ce 100755
--- a/.github/workflows/docs.sh
+++ b/.github/workflows/docs.sh
@@ -97,11 +97,8 @@ if [ -f ./flink-python/dev/lint-python.sh ]; then
PYFLINK_GATEWAY_DISABLED=1 ./flink-python/dev/lint-python.sh -i "sphinx"
# build Chinese python docs into _build/html/zh/ subdirectory
- UV_HOME="${FLINK_UV_HOME:-./flink-python/dev/.uv}"
pushd flink-python/docs
- source "$UV_HOME/bin/activate"
make zh
- deactivate
popd
# move python docs (English at root, Chinese at zh/)