From 6ea05950b161a58c95fd5bfc85551f04b73bac08 Mon Sep 17 00:00:00 2001 From: Lianmin Zheng Date: Sun, 11 May 2025 16:04:55 -0700 Subject: [PATCH] Fix release-docs.yml to not use python 3.9 (#6204) --- .github/workflows/release-docs.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release-docs.yml b/.github/workflows/release-docs.yml index cb92a27fb..d5ca23ecb 100644 --- a/.github/workflows/release-docs.yml +++ b/.github/workflows/release-docs.yml @@ -22,11 +22,6 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: '3.9' - - name: Install dependencies run: | find /public_sglang_ci/runner-a-gpu-1/_work/_tool/Python/3.9.21/x64/lib/python3.9/site-packages -name "sgl-kernel*" -exec rm -rf {} + || true @@ -36,6 +31,8 @@ jobs: apt-get install -y pandoc apt-get update && apt-get install -y parallel retry + ln -sf "$(which python3)" /usr/bin/python + - name: Setup Jupyter Kernel run: | python -m ipykernel install --user --name python3 --display-name "Python 3"