Skip to content

Commit 8312c02

Browse files
authored
Configuring for toolkit (#106)
1 parent 4a41873 commit 8312c02

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows/pre-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
name: linting
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525
- uses: actions/setup-python@v5
2626
with:
2727
python-version: 3.x

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
3737
name: ${{ matrix.config[1] }}
3838
steps:
39-
- uses: actions/checkout@v4
39+
- uses: actions/checkout@v5
4040
with:
4141
persist-credentials: false
4242
- name: Install uv + caching

.meta.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# https://github.com/zopefoundation/meta/tree/master/config/toolkit
33
[meta]
44
template = "toolkit"
5-
commit-id = "c6354ebd"
5+
commit-id = "f97912cf"
66

77
[python]
88
with-sphinx-doctests = false

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ repos:
1212
- id: autopep8
1313
args: [--in-place, --aggressive, --aggressive]
1414
- repo: https://github.com/asottile/pyupgrade
15-
rev: v3.19.1
15+
rev: v3.20.0
1616
hooks:
1717
- id: pyupgrade
1818
args: [--py39-plus]
@@ -21,7 +21,7 @@ repos:
2121
hooks:
2222
- id: teyit
2323
- repo: https://github.com/PyCQA/flake8
24-
rev: "7.2.0"
24+
rev: "7.3.0"
2525
hooks:
2626
- id: flake8
2727
additional_dependencies:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
[build-system]
66
requires = [
7-
"setuptools == 75.8.2",
7+
"setuptools == 78.1.1",
88
"wheel",
99
]
1010
build-backend = "setuptools.build_meta"

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ envlist =
1616
[testenv]
1717
skip_install = true
1818
deps =
19-
setuptools == 75.8.2
19+
setuptools == 78.1.1
2020
zc.buildout
2121
wheel
2222
setenv =
@@ -44,7 +44,7 @@ description = ensure that the distribution is ready to release
4444
basepython = python3
4545
skip_install = true
4646
deps =
47-
setuptools == 75.8.2
47+
setuptools == 78.1.1
4848
wheel
4949
twine
5050
build

0 commit comments

Comments
 (0)