From 7d3af603e75dc8f92c1bfa11ac065471bf52388a Mon Sep 17 00:00:00 2001 From: ishandhanani <82981111+ishandhanani@users.noreply.github.com> Date: Fri, 8 Aug 2025 14:03:17 -0700 Subject: [PATCH] chore(ci): update Python version from 3.9 to 3.10 in sgl-kernel workflow (#8981) --- .github/workflows/pr-test-sgl-kernel.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/pr-test-sgl-kernel.yml b/.github/workflows/pr-test-sgl-kernel.yml index 59eabcb60..8904aa64e 100644 --- a/.github/workflows/pr-test-sgl-kernel.yml +++ b/.github/workflows/pr-test-sgl-kernel.yml @@ -2,11 +2,11 @@ name: PR Test (sgl-kernel) on: push: - branches: [ main ] + branches: [main] paths: - "sgl-kernel/**" pull_request: - branches: [ main ] + branches: [main] paths: - "sgl-kernel/**" workflow_dispatch: @@ -36,10 +36,10 @@ jobs: strategy: matrix: include: - - python-version: '3.9' - cuda-version: '12.4' - - python-version: '3.9' - cuda-version: '12.9' + - python-version: "3.10" + cuda-version: "12.4" + - python-version: "3.10" + cuda-version: "12.9" name: Build Wheel (CUDA ${{ matrix.cuda-version }}) steps: - name: Cleanup @@ -48,7 +48,7 @@ jobs: - uses: actions/checkout@v4 with: - submodules: 'recursive' + submodules: "recursive" - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5