Skip to content

Commit f208c0c

Browse files
authored
- update to latest zope.meta templates (#302)
1 parent bd936f7 commit f208c0c

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

.github/workflows/pre-commit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ jobs:
2121
name: linting
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: actions/checkout@v4
25-
- uses: actions/setup-python@v5
24+
- uses: actions/checkout@v5
25+
- uses: actions/setup-python@v6
2626
with:
2727
python-version: 3.x
2828
- uses: pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd #v3.0.1

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,17 +43,17 @@ jobs:
4343
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
4444
name: ${{ matrix.os[0] }}-${{ matrix.config[1] }}
4545
steps:
46-
- uses: actions/checkout@v4
46+
- uses: actions/checkout@v5
4747
with:
4848
persist-credentials: false
4949
- name: Install uv + caching
50-
uses: astral-sh/setup-uv@v5
50+
uses: astral-sh/setup-uv@v6
5151
with:
5252
enable-cache: true
5353
cache-dependency-glob: |
5454
setup.*
5555
tox.ini
56-
python-version: ${{ matrix.matrix.config[0] }}
56+
python-version: ${{ matrix.config[0] }}
5757
github-token: ${{ secrets.GITHUB_TOKEN }}
5858
- name: Test
5959
if: ${{ !startsWith(runner.os, 'Mac') }}

.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/pure-python
33
[meta]
44
template = "pure-python"
5-
commit-id = "a0de4e93"
5+
commit-id = "7dcce077"
66

77
[python]
88
with-pypy = false

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
minimum_pre_commit_version: '3.6'
44
repos:
55
- repo: https://github.com/pycqa/isort
6-
rev: "6.0.1"
6+
rev: "6.1.0"
77
hooks:
88
- id: isort
99
- repo: https://github.com/hhatto/autopep8
@@ -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.1.2"
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,< 81",
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
@@ -22,7 +22,7 @@ package = wheel
2222
wheel_build_env = .pkg
2323
pip_pre = py314: true
2424
deps =
25-
setuptools == 75.8.2
25+
setuptools >= 78.1.1,< 81
2626
datetime: DateTime
2727
-cconstraints.txt
2828
pytest-cov
@@ -67,7 +67,7 @@ description = ensure that the distribution is ready to release
6767
basepython = python3
6868
skip_install = true
6969
deps =
70-
setuptools == 75.8.2
70+
setuptools >= 78.1.1,< 81
7171
wheel
7272
twine
7373
build

0 commit comments

Comments
 (0)