15
15
# $ piprepo build /tmp/pypi
16
16
# $ python -m pip install -v coverage --index-url=file:///tmp/pypi/simple
17
17
#
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.
21
18
22
19
name : " Kits"
23
20
82
79
# }
83
80
# # PYVERSIONS. Available versions: https://pypi.org/project/cibuildwheel/
84
81
# # 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
+ #
85
85
# pys = ["cp39", "cp310", "cp311", "cp312", "cp313"]
86
86
#
87
87
# # Some OS/arch combinations need overrides for the Python versions:
@@ -150,6 +150,12 @@ jobs:
150
150
- {"os": "windows", "py": "cp312", "arch": "ARM64", "os-version": "11-arm", "minpy": "3.11"}
151
151
- {"os": "windows", "py": "cp313", "arch": "ARM64", "os-version": "11-arm", "minpy": "3.11"}
152
152
# [[[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
+
153
159
fail-fast : false
154
160
155
161
steps :
@@ -165,7 +171,9 @@ jobs:
165
171
cache : pip
166
172
cache-dependency-path : ' requirements/*.pip'
167
173
168
- # rust toolchain is not currently installed on windows arm64 images https://github.com/actions/partner-runner-images/issues/77
174
+ # Rust toolchain is not currently installed on windows arm64 images.
175
+ # We need it for nh3, needed by readme-renderer, needed by twine.
176
+ # https://github.com/actions/partner-runner-images/issues/77
169
177
- if : ${{ matrix.os-version == '11-arm' }}
170
178
name : Setup rust
171
179
id : setup-rust
@@ -174,7 +182,7 @@ jobs:
174
182
Invoke-WebRequest https://static.rust-lang.org/rustup/dist/aarch64-pc-windows-msvc/rustup-init.exe -OutFile .\rustup-init.exe
175
183
.\rustup-init.exe -y
176
184
Add-Content $env:GITHUB_PATH "$env:USERPROFILE\.cargo\bin"
177
-
185
+
178
186
- name : " Install tools"
179
187
run : |
180
188
python -m pip install -r requirements/kit.pip
0 commit comments