1515# $ piprepo build /tmp/pypi
1616# $ python -m pip install -v coverage --index-url=file:///tmp/pypi/simple
1717#
18- # Note that cibuildwheel recommends not shipping wheels for pre-release versions
19- # of Python: https://cibuildwheel.readthedocs.io/en/stable/options/#prerelease-pythons
20- # So we don't.
2118
2219name : " Kits"
2320
@@ -48,8 +45,8 @@ concurrency:
4845 group : " ${{ github.workflow }}-${{ github.ref }}"
4946 cancel-in-progress : true
5047
51- jobs :
52- wheels :
48+ jobs :
49+ wheels :
5350 name : " ${{ matrix.py }} ${{ matrix.os }} ${{ matrix.arch }} wheels"
5451 runs-on : " ${{ matrix.os }}-${{ matrix.os-version || 'latest' }}"
5552 env :
8279 # }
8380 # # PYVERSIONS. Available versions: https://pypi.org/project/cibuildwheel/
8481 # # PyPy versions are handled further below in the "pypy" step.
82+ # # Note that cibuildwheel recommends not shipping wheels for pre-release versions
83+ # # of Python: https://cibuildwheel.readthedocs.io/en/stable/options/#enable
84+ #
8585 # pys = ["cp39", "cp310", "cp311", "cp312", "cp313"]
8686 #
8787 # # Some OS/arch combinations need overrides for the Python versions:
@@ -150,6 +150,12 @@ jobs:
150150 - {"os": "windows", "py": "cp312", "arch": "ARM64", "os-version": "11-arm", "minpy": "3.11"}
151151 - {"os": "windows", "py": "cp313", "arch": "ARM64", "os-version": "11-arm", "minpy": "3.11"}
152152 # [[[end]]] (checksum: ce8e88f33d7db22f1e21a767e3256a00)
153+ # ^^^^^^^^
154+ # If a check fails and points to this checksum line, it means you edited
155+ # the matrix directly instead of editing the Python code in the comment
156+ # above it. The matrix is generated by running cog as described at the
157+ # top of that comment.
158+
153159 fail-fast : false
154160
155161 steps :
@@ -166,15 +172,15 @@ jobs:
166172 cache-dependency-path : ' requirements/*.pip'
167173
168174 # rust toolchain is not currently installed on windows arm64 images https://github.com/actions/partner-runner-images/issues/77
169- - if : ${{ matrix.os-version == '11-arm' }}
170- name : Setup rust
171- id : setup-rust
172- shell : pwsh
173- run : |
174- Invoke-WebRequest https://static.rust-lang.org/rustup/dist/aarch64-pc-windows-msvc/rustup-init.exe -OutFile .\rustup-init.exe
175- .\rustup-init.exe -y
176- Add-Content $env:GITHUB_PATH "$env:USERPROFILE\.cargo\bin"
177-
175+ # - if: ${{ matrix.os-version == '11-arm' }}
176+ # name: Setup rust
177+ # id: setup-rust
178+ # shell: pwsh
179+ # run: |
180+ # Invoke-WebRequest https://static.rust-lang.org/rustup/dist/aarch64-pc-windows-msvc/rustup-init.exe -OutFile .\rustup-init.exe
181+ # .\rustup-init.exe -y
182+ # Add-Content $env:GITHUB_PATH "$env:USERPROFILE\.cargo\bin"
183+
178184 - name : " Install tools"
179185 run : |
180186 python -m pip install -r requirements/kit.pip
0 commit comments