File tree Expand file tree Collapse file tree 7 files changed +10
-11
lines changed
Expand file tree Collapse file tree 7 files changed +10
-11
lines changed Original file line number Diff line number Diff line change 5151 python-version : ${{ matrix.config[0] }}
5252 github-token : ${{ secrets.GITHUB_TOKEN }}
5353 - name : Test
54- if : ${{ !startsWith(runner.os, 'Mac') }}
5554 run : uvx --with tox-uv tox -e ${{ matrix.config[1] }}
56- - name : Test (macOS)
57- if : ${{ startsWith(runner.os, 'Mac') }}
58- run : uvx --with tox-uv tox -e ${{ matrix.config[1] }}-universal2
5955 - name : Coverage
6056 if : matrix.config[1] == 'coverage'
6157 run : |
Original file line number Diff line number Diff line change 2828log /
2929parts /
3030pyvenv.cfg
31+ share /
3132testing.log
3233var /
Original file line number Diff line number Diff line change 22# https://github.com/zopefoundation/meta/tree/master/src/zope/meta/pure-python
33[meta ]
44template = " pure-python"
5- commit-id = " be167023 "
5+ commit-id = " 05dc2673 "
66
77[python ]
88with-windows = false
@@ -11,6 +11,7 @@ with-future-python = true
1111with-docs = true
1212with-sphinx-doctests = false
1313with-macos = false
14+ with-free-threaded-python = false
1415
1516[coverage ]
1617fail-under = 10
Original file line number Diff line number Diff line change 2020 rev : 0.4.3
2121 hooks :
2222 - id : teyit
23+ language_version : python3.13
2324 - repo : https://github.com/PyCQA/flake8
2425 rev : " 7.3.0"
2526 hooks :
Original file line number Diff line number Diff line change 2626 echo "dir=$(pip cache dir)" >> $Env:GITHUB_OUTPUT
2727
2828 - name: pip cache (default)
29- uses: actions/cache@v4
29+ uses: actions/cache@v5
3030 if: ${{ !startsWith(runner.os, 'Windows') }}
3131 with:
3232 path: ${{ steps.pip-cache-default.outputs.dir }}
3535 ${{ runner.os }}-pip-
3636
3737 - name: pip cache (Windows)
38- uses: actions/cache@v4
38+ uses: actions/cache@v5
3939 if: ${{ startsWith(runner.os, 'Windows') }}
4040 with:
4141 path: ${{ steps.pip-cache-windows.outputs.dir }}
Original file line number Diff line number Diff line change 11
22 - name: Download %(package_name)s wheel
3- uses: actions/download-artifact@v4
3+ uses: actions/download-artifact@v8
44 with:
55 name: %(package_name)s-${{ runner.os }}-${{ matrix.python-version }}.whl
66 path: dist/
Original file line number Diff line number Diff line change @@ -171,7 +171,7 @@ jobs:
171171 {% else %}
172172 !startsWith(runner.os, 'Mac')
173173 {% endif %}
174- uses: actions/upload-artifact@v4
174+ uses: actions/upload-artifact@v7
175175 with:
176176 {% if kind == 'macOS x86_64' %}
177177 # The x86_64 wheel is uploaded with a different name just so it can be
@@ -374,7 +374,7 @@ jobs:
374374 bash .manylinux.sh
375375
376376 - name: Upload %(package_name)s wheels
377- uses: actions/upload-artifact@v4
377+ uses: actions/upload-artifact@v7
378378 with:
379379 path: wheelhouse/*whl
380380 name: manylinux_${{ matrix.image }}_wheels.zip
@@ -403,7 +403,7 @@ jobs:
403403
404404 steps:
405405 - name: Download all wheel artifacts
406- uses: actions/download-artifact@v4
406+ uses: actions/download-artifact@v8
407407 with:
408408 path: dist/
409409 pattern: '*'
You can’t perform that action at this time.
0 commit comments