Skip to content

Commit 0dcd78f

Browse files
committed
- update GitHub actions versions and apply latest templates
1 parent 05dc267 commit 0dcd78f

File tree

7 files changed

+10
-11
lines changed

7 files changed

+10
-11
lines changed

.github/workflows/tests.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,7 @@ jobs:
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: |

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,6 @@ lib64
2828
log/
2929
parts/
3030
pyvenv.cfg
31+
share/
3132
testing.log
3233
var/

.meta.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# https://github.com/zopefoundation/meta/tree/master/src/zope/meta/pure-python
33
[meta]
44
template = "pure-python"
5-
commit-id = "be167023"
5+
commit-id = "05dc2673"
66

77
[python]
88
with-windows = false
@@ -11,6 +11,7 @@ with-future-python = true
1111
with-docs = true
1212
with-sphinx-doctests = false
1313
with-macos = false
14+
with-free-threaded-python = false
1415

1516
[coverage]
1617
fail-under = 10

.pre-commit-config.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ repos:
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:

src/zope/meta/c-code/tests-cache.j2

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
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 }}
@@ -35,7 +35,7 @@
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 }}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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/

src/zope/meta/c-code/tests.yml.j2

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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: '*'

0 commit comments

Comments
 (0)