From 967f30e0aeeb3e8f7cf97a45b3960d8f981f30c6 Mon Sep 17 00:00:00 2001 From: dwpeng Date: Thu, 12 Dec 2024 16:23:36 +0800 Subject: [PATCH] chore: update Python version format in wheels.yml workflow and upgrade setup-python action to v5 --- .github/workflows/wheels.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 03719bb..b36504d 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - python-version: [38, 39, 310, 311, 312] + python-version: [3.8, 3.9, 3.10, 3.11, 3.12] manylinux-image: [manylinux2014] arch: [auto, aarch64] @@ -22,6 +22,9 @@ jobs: - uses: actions/checkout@v4 with: submodules: recursive + - uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} - name: Install dependencies run: |