🌐 AI搜索 & 代理 主页
Skip to content

Commit 8bb99bc

Browse files
committed
Be explicit about Python version to use
1 parent da7fc0c commit 8bb99bc

File tree

1 file changed

+15
-6
lines changed

1 file changed

+15
-6
lines changed

.github/workflows/main.yml

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,25 +18,35 @@ jobs:
1818
os:
1919
# Disabled for now, will require some work (#2653)
2020
#
21-
# - category: windows
22-
# platform: x86
23-
# instance: windows-latest
21+
- category: windows
22+
platform: x86
23+
instance: windows-latest
24+
suffix: -windows-x86-none
2425

2526
- category: windows
2627
platform: x64
2728
instance: windows-latest
29+
suffix: -windows-x86_64-none
2830

2931
- category: ubuntu
3032
platform: x64
3133
instance: ubuntu-22.04
34+
suffix: ""
3235

3336
- category: ubuntu
3437
platform: arm64
3538
instance: ubuntu-22.04-arm
39+
suffix: ""
3640

3741
- category: macos
3842
platform: x64
39-
instance: macos-13
43+
instance: macos-15
44+
suffix: -macos-x86_64-none
45+
46+
- category: macos
47+
platform: arm64
48+
instance: macos-15
49+
suffix: -macos-aarch64-none
4050

4151
python: ["3.10", "3.11", "3.12", "3.13"]
4252

@@ -58,8 +68,7 @@ jobs:
5868
- name: Set up Python ${{ matrix.python }}
5969
uses: astral-sh/setup-uv@v7
6070
with:
61-
architecture: ${{ matrix.os.platform }}
62-
python-version: ${{ matrix.python }}
71+
python-version: cpython-${{ matrix.python }}${{ matrix.os.suffix }}
6372
cache-python: true
6473
activate-environment: true
6574
enable-cache: true

0 commit comments

Comments
 (0)