Skip to content

Commit 9338a1c

Browse files
committed
Configuring for toolkit
1 parent bfeb410 commit 9338a1c

File tree

3 files changed

+18
-7
lines changed

3 files changed

+18
-7
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 = "0ce77409"
5+
commit-id = "7e7d00d8"
66

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

pyproject.toml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
# https://github.com/zopefoundation/meta/tree/master/config/toolkit
44

55
[build-system]
6-
requires = ["setuptools <= 75.6.0"]
6+
requires = [
7+
"setuptools <= 75.8.2",
8+
]
79
build-backend = "setuptools.build_meta"
810

911
[tool.coverage.run]
@@ -15,7 +17,16 @@ fail_under = "not applicable"
1517
precision = 2
1618
ignore_errors = true
1719
show_missing = true
18-
exclude_lines = ["pragma: no cover", "pragma: nocover", "except ImportError:", "raise NotImplementedError", "if __name__ == '__main__':", "self.fail", "raise AssertionError", "raise unittest.Skip"]
20+
exclude_lines = [
21+
"pragma: no cover",
22+
"pragma: nocover",
23+
"except ImportError:",
24+
"raise NotImplementedError",
25+
"if __name__ == '__main__':",
26+
"self.fail",
27+
"raise AssertionError",
28+
"raise unittest.Skip",
29+
]
1930

2031
[tool.coverage.html]
2132
directory = "parts/htmlcov"

tox.ini

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ envlist =
1616
[testenv]
1717
skip_install = true
1818
deps =
19-
setuptools <= 75.6.0
20-
zc.buildout >= 3.1
19+
setuptools <= 75.8.2
20+
zc.buildout >= 4.1.3
2121
wheel > 0.37
2222
setenv =
2323
zope_i18n_compile_mo_files=True
@@ -36,15 +36,15 @@ commands =
3636
basepython = python3
3737
deps =
3838
git+https://github.com/pypa/setuptools.git\#egg=setuptools
39-
zc.buildout >= 3.1
39+
zc.buildout >= 4.1.3
4040
wheel > 0.37
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
4848
twine
4949
build
5050
check-manifest

0 commit comments

Comments
 (0)