Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Plone 6.0.14 and 6.1.0b2 are out with Python 3.13 support. #1823

Merged
merged 6 commits into from
Dec 20, 2024
Merged
Show file tree
Hide file tree
Changes from 5 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
8 changes: 8 additions & 0 deletions docs/_inc/_install-python-plone60.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ However, it is recommended to use a Python version manager, {term}`pyenv`, that

Plone 6.0 requires Python version {{SUPPORTED_PYTHON_VERSIONS_PLONE60}}.

```{versionadded} Plone 6.0.14
Support for Python 3.13.
```

```{versionremoved} Plone 6.0.14
Support for Python 3.8.
```

```{warning}
Do not create or activate a Python virtual environment at this time.
The instructions below will create one.
Expand Down
4 changes: 2 additions & 2 deletions docs/backend/upgrading/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ If you are at Plone 2.5 and want to upgrade to the latest Plone 6, you should ap

- First upgrade from Plone 2.5 to the latest Plone 3 version (3.3.6).
- Then upgrade from Plone 3 to the latest Plone 4 version (4.3.20).
- Then upgrade from Plone 4 to the latest Plone 5 version.
- Then upgrade from Plone 5 to the latest Plone 6 version.
- Then upgrade from Plone 4 to the latest Plone 5 version (5.2.15).
- Then upgrade from Plone 5 to the latest Plone 6 version ({PLONE_BACKEND_PATCH_VERSION}).


(introduction-upgrade-strategies-export-import-migrations-label)=
Expand Down
6 changes: 3 additions & 3 deletions docs/conceptual-guides/package-management.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ If you want to check out a Plone core package for development, or want to overri

```text
# constraints.txt with unresolvable version conflict
-c https://dist.plone.org/release/{PLONE_BACKEND_PATCH_VERSION}/constraints.txt
plone.api>=2.0.0a3
-c https://dist.plone.org/release/6.0.9/constraints.txt
plone.api>=2.1.0
stevepiercy marked this conversation as resolved.
Show resolved Hide resolved
```

Unfortunately `pip` does not allow overriding constraints this way.
Unfortunately `pip` does not allow overriding constraints this way.
{term}`mxdev` solves this issue.


Expand Down
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -318,8 +318,8 @@
"postman_response": "![](../_static/img/postman_response.png)",
"postman_retain_headers": "![](../_static/img/postman_retain_headers.png)",
"fawrench": '<span class="fa fa-wrench" style="font-size: 1.6em;"></span>',
"SUPPORTED_PYTHON_VERSIONS_PLONE60": "3.8, 3.9, 3.10, 3.11, or 3.12",
"SUPPORTED_PYTHON_VERSIONS_PLONE61": "3.10, 3.11, or 3.12",
"SUPPORTED_PYTHON_VERSIONS_PLONE60": "3.9, 3.10, 3.11, 3.12, or 3.13",
mauritsvanrees marked this conversation as resolved.
Show resolved Hide resolved
"SUPPORTED_PYTHON_VERSIONS_PLONE61": "3.10, 3.11, 3.12, or 3.13",
}


Expand Down Expand Up @@ -441,7 +441,7 @@ def source_replace(app, docname, source):
# Dict of replacements.
source_replacements = {
"{PLONE_BACKEND_MINOR_VERSION}": "6.0",
"{PLONE_BACKEND_PATCH_VERSION}": "6.0.13",
"{PLONE_BACKEND_PATCH_VERSION}": "6.0.14",
mauritsvanrees marked this conversation as resolved.
Show resolved Hide resolved
}

# Finally, configure app attributes.
Expand Down
Loading