-
-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '6.0' into playwright-robottests
- Loading branch information
Showing
14 changed files
with
112 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,7 @@ | ||
# Dependencies | ||
/bin | ||
/include | ||
/lib | ||
/lib64 | ||
/venv | ||
|
||
# Generated files | ||
pyvenv.cfg | ||
/_build | ||
/styles/Microsoft | ||
/share | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
--- | ||
myst: | ||
html_meta: | ||
"description": "Compare Plone Classic UI's installation tools, Buildout and pip" | ||
"property=og:description": "Compare Plone Classic UI's installation tools, Buildout and pip" | ||
"property=og:title": "Compare Buildout and pip" | ||
"keywords": "Plone 6, Conceptual guides, Classic UI, Buildout, pip, install" | ||
--- | ||
|
||
# Compare Buildout and pip | ||
|
||
This guide explains the differences between two tools, {term}`Buildout` and {term}`pip`, to install Plone and its Classic UI user interface, helping to inform your choice when developing your new project in Plone. | ||
|
||
The choice of installation tool has implications for admins and developers. | ||
|
||
````{grid} 1 1 1 2 | ||
:gutter: 1 | ||
:margin: 0 | ||
:padding: 0 | ||
```{grid-item-card} Buildout | ||
- You can create recipes to automate development and production installations. | ||
- Maintained and used primarily by the small Plone community. | ||
- May have problems resolving dependencies when a new pip or setuptools version is released. | ||
- Source checkouts managed through {term}`mr.developer`. | ||
``` | ||
```{grid-item-card} pip | ||
- Installs or uninstalls packages only. | ||
- Maintained and used by the large Python community. | ||
- Changes in dependency resolution are well-documented. | ||
- Source checkouts managed through {term}`mxdev`. | ||
``` | ||
```` | ||
|
||
```{seealso} | ||
[Proposal: Use pip constraints as canonical version location #3670](https://github.com/plone/Products.CMFPlone/issues/3670) | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule plone.restapi
updated
3 files
+2 −0 | news/1835.bugfix | |
+9 −0 | src/plone/restapi/services/users/update.py | |
+227 −0 | src/plone/restapi/tests/test_services_users.py |
Submodule volto
updated
22 files
+20 −9 | PACKAGES.md | |
+80 −0 | apps/rr7/.eslintrc.cjs | |
+7 −0 | apps/rr7/.gitignore | |
+30 −0 | apps/rr7/README.md | |
+8 −0 | apps/rr7/app/client.ts | |
+15 −0 | apps/rr7/app/config.ts | |
+98 −0 | apps/rr7/app/root.tsx | |
+7 −0 | apps/rr7/app/routes.ts | |
+2 −0 | apps/rr7/app/routes/$.tsx | |
+79 −0 | apps/rr7/app/routes/home.tsx | |
+17 −0 | apps/rr7/app/utils.ts | |
+39 −0 | apps/rr7/package.json | |
+ − | apps/rr7/public/favicon.ico | |
+33 −0 | apps/rr7/tsconfig.json | |
+28 −0 | apps/rr7/vite.config.ts | |
+12 −1 | docs/source/contributing/developing-core.md | |
+148 −0 | packages/volto-slate/locales/nl/LC_MESSAGES/volto.po | |
+1 −0 | packages/volto-slate/news/6476.feature | |
+851 −851 | packages/volto/locales/nl/LC_MESSAGES/volto.po | |
+1 −0 | packages/volto/news/6472.internal | |
+1 −0 | packages/volto/news/6476.feature | |
+1,257 −188 | pnpm-lock.yaml |