Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .meta.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# https://github.com/zopefoundation/meta/tree/master/config/toolkit
[meta]
template = "toolkit"
commit-id = "0ce77409"
commit-id = "7e7d00d8"

[python]
with-sphinx-doctests = false
Expand Down
6 changes: 3 additions & 3 deletions dependabot/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ grokcore.traverser==4.0
grokcore.view==4.0
grokcore.viewlet==4.0
grokui.base==0.8.2
ipython==8.32.0
ipython==9.0.1
martian==2.1
z3c.evalexception==4.0
z3c.flashmessage==3.0
Expand All @@ -29,7 +29,7 @@ zope.app.publication==5.0
zope.app.wsgi==5.3
zope.errorview==2.0
zope.generations==5.1.0
zope.testbrowser==7.0
zope.testbrowser==7.0.1
appnope==0.1.4
beautifulsoup4==4.13.3
collective.recipe.omelette==2.0.0
Expand All @@ -38,7 +38,7 @@ decorator==5.2.1
gnureadline==8.2.13
ipython-genutils==0.2.0
legacy-cgi==2.6.2
mock==5.1.0
mock==5.2.0
Paste==3.10.1
pexpect==4.9.0
pickleshare==0.7.5
Expand Down
6 changes: 3 additions & 3 deletions grok-versions.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ grokcore.traverser = 4.0
grokcore.view = 4.0
grokcore.viewlet = 4.0
grokui.base = 0.8.2
ipython = 8.32.0
ipython = 9.0.1
martian = 2.1
z3c.evalexception = 4.0
z3c.flashmessage = 3.0
Expand All @@ -31,7 +31,7 @@ zope.app.publication = 5.0
zope.app.wsgi = 5.3
zope.errorview = 2.0
zope.generations = 5.1.0
zope.testbrowser = 7.0
zope.testbrowser = 7.0.1

# Tools and dependencies
appnope = 0.1.4
Expand All @@ -42,7 +42,7 @@ decorator = 5.2.1
gnureadline = 8.2.13
ipython-genutils = 0.2.0
legacy-cgi = 2.6.2
mock = 5.1.0
mock = 5.2.0
Paste = 3.10.1
pexpect = 4.9.0
pickleshare = 0.7.5
Expand Down
15 changes: 13 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
# https://github.com/zopefoundation/meta/tree/master/config/toolkit

[build-system]
requires = ["setuptools <= 75.6.0"]
requires = [
"setuptools <= 75.8.2",
]
build-backend = "setuptools.build_meta"

[tool.coverage.run]
Expand All @@ -15,7 +17,16 @@ fail_under = "not applicable"
precision = 2
ignore_errors = true
show_missing = true
exclude_lines = ["pragma: no cover", "pragma: nocover", "except ImportError:", "raise NotImplementedError", "if __name__ == '__main__':", "self.fail", "raise AssertionError", "raise unittest.Skip"]
exclude_lines = [
"pragma: no cover",
"pragma: nocover",
"except ImportError:",
"raise NotImplementedError",
"if __name__ == '__main__':",
"self.fail",
"raise AssertionError",
"raise unittest.Skip",
]

[tool.coverage.html]
directory = "parts/htmlcov"
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ envlist =
[testenv]
skip_install = true
deps =
setuptools <= 75.6.0
zc.buildout >= 3.1
setuptools <= 75.8.2
zc.buildout >= 4.1.3
wheel > 0.37
setenv =
zope_i18n_compile_mo_files=True
Expand All @@ -36,15 +36,15 @@ commands =
basepython = python3
deps =
git+https://github.com/pypa/setuptools.git\#egg=setuptools
zc.buildout >= 3.1
zc.buildout >= 4.1.3
wheel > 0.37

[testenv:release-check]
description = ensure that the distribution is ready to release
basepython = python3
skip_install = true
deps =
setuptools <= 75.6.0
setuptools <= 75.8.2
twine
build
check-manifest
Expand Down