Skip to content

Commit 8c66cf8

Browse files
authored
Configuring for toolkit (#84)
1 parent 01b8376 commit 8c66cf8

File tree

4 files changed

+12
-10
lines changed

4 files changed

+12
-10
lines changed

.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 = "891c33f9"
5+
commit-id = "c6354ebd"
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
@@ -3,7 +3,7 @@
33
minimum_pre_commit_version: '3.6'
44
repos:
55
- repo: https://github.com/pycqa/isort
6-
rev: "6.0.0"
6+
rev: "6.0.1"
77
hooks:
88
- id: isort
99
- repo: https://github.com/hhatto/autopep8
@@ -21,7 +21,7 @@ repos:
2121
hooks:
2222
- id: teyit
2323
- repo: https://github.com/PyCQA/flake8
24-
rev: "7.1.1"
24+
rev: "7.2.0"
2525
hooks:
2626
- id: flake8
2727
additional_dependencies:

pyproject.toml

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

55
[build-system]
66
requires = [
7-
"setuptools <= 75.6.0",
7+
"setuptools == 75.8.2",
8+
"wheel",
89
]
910
build-backend = "setuptools.build_meta"
1011

tox.ini

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ envlist =
1616
[testenv]
1717
skip_install = true
1818
deps =
19-
setuptools <= 75.6.0
20-
zc.buildout < 4.1
21-
wheel > 0.37
19+
setuptools == 75.8.2
20+
zc.buildout
21+
wheel
2222
setenv =
2323
zope_i18n_compile_mo_files=True
2424
commands_pre =
@@ -36,15 +36,16 @@ commands =
3636
basepython = python3
3737
deps =
3838
git+https://github.com/pypa/setuptools.git\#egg=setuptools
39-
zc.buildout < 4.1
40-
wheel > 0.37
39+
zc.buildout
40+
wheel
4141

4242
[testenv:release-check]
4343
description = ensure that the distribution is ready to release
4444
basepython = python3
4545
skip_install = true
4646
deps =
47-
setuptools <= 75.6.0
47+
setuptools == 75.8.2
48+
wheel
4849
twine
4950
build
5051
check-manifest

0 commit comments

Comments
 (0)