Skip to content
Open
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 news/+d323c2b0.bugfix.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Restore Python 3.9 as one of the default Pythons for Plone 6.0. @mauritsvanrees
3 changes: 2 additions & 1 deletion src/plone/meta/config_package.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
TOX_TEST_MATRIX = {
"6.2": ["3.14", "3.13", "3.12", "3.11", "3.10"],
"6.1": ["3.13", "3.12", "3.11", "3.10"],
"6.0": ["3.13", "3.12", "3.11", "3.10"],
"6.0": ["3.13", "3.12", "3.11", "3.10", "3.9"],
}

MXDEV_CONSTRAINTS = "constraints-mxdev.txt"
Expand All @@ -47,6 +47,7 @@
"3.12": "python:3.12-trixie",
"3.11": "python:3.11-trixie",
"3.10": "python:3.10-trixie",
"3.9": "python:3.9-trixie",
}

# Rather than pointing configured repositories to `plone.meta`'s `main` branch
Expand Down
3 changes: 2 additions & 1 deletion tests/test_package_config_ci.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,8 @@ class TestMinimalPythonVersion:
@pytest.mark.parametrize(
["matrix", "output"],
[
[None, "3.10"],
[None, "3.9"],
[{"6.0": ["*"]}, "3.9"],
[{"6.1": ["*"]}, "3.10"],
[{"6.2": ["*"]}, "3.10"],
[{"6.2": ["3.13"]}, "3.13"],
Expand Down