Skip to content

Commit b68b6ae

Browse files
Plone 6.0.14 and 6.1.0b2 are out with Python 3.13 support. (#1823)
* Plone 6.0.14 and 6.1.0b2 are out with Python 3.13 support. * Add admonition for Python support in Plone 6.0.14 * Fix PLONE_BACKEND_PATCH_VERSION Add latest versions to In-place migrations * Fix example of unresolvable version conflict. With the current PLONE_BACKEND_PATCH_VERSION the example actually contained no version conflict. :-) * Update docs/conf.py --------- Co-authored-by: Steve Piercy <[email protected]>
1 parent 9278f59 commit b68b6ae

File tree

4 files changed

+15
-8
lines changed

4 files changed

+15
-8
lines changed

docs/_inc/_install-python-plone60.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@ However, it is recommended to use a Python version manager, {term}`pyenv`, that
33

44
Plone 6.0 requires Python version {{SUPPORTED_PYTHON_VERSIONS_PLONE60}}.
55

6+
```{versionadded} Plone 6.0.14
7+
Support for Python 3.13.
8+
```
9+
10+
```{versionremoved} Plone 6.0.14
11+
Support for Python 3.8.
12+
```
13+
614
```{warning}
715
Do not create or activate a Python virtual environment at this time.
816
The instructions below will create one.

docs/backend/upgrading/intro.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,8 @@ If you are at Plone 2.5 and want to upgrade to the latest Plone 6, you should ap
118118

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

124124

125125
(introduction-upgrade-strategies-export-import-migrations-label)=

docs/conceptual-guides/package-management.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ If you want to check out a Plone core package for development, or want to overri
3232

3333
```text
3434
# constraints.txt with unresolvable version conflict
35-
-c https://dist.plone.org/release/{PLONE_BACKEND_PATCH_VERSION}/constraints.txt
36-
plone.api>=2.0.0a3
35+
-c https://dist.plone.org/release/6.0.9/constraints.txt
36+
plone.api>=2.1.0
3737
```
3838

39-
Unfortunately `pip` does not allow overriding constraints this way.
39+
Unfortunately `pip` does not allow overriding constraints this way.
4040
{term}`mxdev` solves this issue.
4141

4242

docs/conf.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -318,8 +318,8 @@
318318
"postman_response": "![](../_static/img/postman_response.png)",
319319
"postman_retain_headers": "![](../_static/img/postman_retain_headers.png)",
320320
"fawrench": '<span class="fa fa-wrench" style="font-size: 1.6em;"></span>',
321-
"SUPPORTED_PYTHON_VERSIONS_PLONE60": "3.8, 3.9, 3.10, 3.11, or 3.12",
322-
"SUPPORTED_PYTHON_VERSIONS_PLONE61": "3.10, 3.11, or 3.12",
321+
"SUPPORTED_PYTHON_VERSIONS_PLONE60": "3.9, 3.10, 3.11, 3.12, or 3.13",
322+
"SUPPORTED_PYTHON_VERSIONS_PLONE61": "3.10, 3.11, 3.12, or 3.13",
323323
}
324324

325325

@@ -441,7 +441,6 @@ def source_replace(app, docname, source):
441441
# Dict of replacements.
442442
source_replacements = {
443443
"{PLONE_BACKEND_MINOR_VERSION}": "6.0",
444-
"{PLONE_BACKEND_PATCH_VERSION}": "6.0.13",
445444
}
446445

447446
# Finally, configure app attributes.

0 commit comments

Comments
 (0)