Skip to content
Draft
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
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
- ["3.11", "py311"]
- ["3.12", "py312"]
- ["3.13", "py313"]
- ["3.14", "py314"]
- ["3.11", "docs"]
- ["3.11", "coverage"]
exclude:
Expand Down
4 changes: 2 additions & 2 deletions .meta.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
# https://github.com/zopefoundation/meta/tree/master/config/zope-product
[meta]
template = "zope-product"
commit-id = "462c04e2"
commit-id = "a0de4e93"

[python]
with-pypy = false
with-docs = true
with-sphinx-doctests = false
with-windows = true
with-macos = true
with-future-python = false
with-future-python = true

[coverage]
fail-under = 82
Expand Down
6 changes: 5 additions & 1 deletion constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@ Products.BTreeFolder2==5.1
Products.ZCatalog==7.1
Pygments==2.19.1
Record==4.1
RestrictedPython==8.0
RestrictedPython==8.0; python_version == '3.10'
RestrictedPython==8.0; python_version == '3.11'
RestrictedPython==8.0; python_version == '3.12'
RestrictedPython==8.0; python_version == '3.9'
RestrictedPython==8.1a1.dev0; python_version > '3.12'
Sphinx==7.4.7; python_version == '3.9'
Sphinx==8.1.3; python_version == '3.10'
Sphinx==8.2.3; python_version > '3.10'
Expand Down
6 changes: 5 additions & 1 deletion requirements-full.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ MultiMapping==5.0
Paste==3.10.1
PasteDeploy==3.1.0
Persistence==5.1
RestrictedPython==8.0
RestrictedPython==8.0; python_version == '3.10'
RestrictedPython==8.0; python_version == '3.11'
RestrictedPython==8.0; python_version == '3.12'
RestrictedPython==8.0; python_version == '3.9'
RestrictedPython==8.1a1.dev0; python_version > '3.12'
WSGIProxy2==0.5.1
WebOb==1.8.9
WebTest==3.0.4
Expand Down
1 change: 1 addition & 0 deletions sources.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ RestrictedPython = git ${remotes:github}/RestrictedPython pushurl=${remotes:gith
zExceptions = git ${remotes:github}/zExceptions pushurl=${remotes:github_push}/zExceptions
zope.globalrequest = git ${remotes:github}/zope.globalrequest pushurl=${remotes:github_push}/zope.globalrequest
ZODB = git ${remotes:github}/ZODB pushurl=${remotes:github_push}/ZODB
z3c.pt = git ${remotes:github}/z3c.pt pushurl=${remotes:github_push}/z3c.pt

# Optional dependencies
five.localsitemanager = git ${remotes:github}/five.localsitemanager pushurl=${remotes:github_push}/five.localsitemanager
Expand Down
1 change: 1 addition & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ envlist =
py311
py312
py313
py314
docs
coverage

Expand Down
11 changes: 10 additions & 1 deletion versions-prod.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ MultiMapping = 5.0
Paste = 3.10.1
PasteDeploy = 3.1.0
Persistence = 5.1
RestrictedPython = 8.0
RestrictedPython = 8.1a1.dev0
WebTest = 3.0.4
WSGIProxy2 = 0.5.1
WebOb = 1.8.9
Expand Down Expand Up @@ -81,3 +81,12 @@ zope.testbrowser = 7.0.1
zope.testing = 5.1
zope.traversing = 5.1
zope.viewlet = 5.1

[versions:python312]
RestrictedPython = 8.0
[versions:python311]
RestrictedPython = 8.0
[versions:python310]
RestrictedPython = 8.0
[versions:python39]
RestrictedPython = 8.0
Loading