Skip to content

Commit 89f0fd9

Browse files
committed
WIP
1 parent 6008919 commit 89f0fd9

File tree

9 files changed

+17
-67
lines changed

9 files changed

+17
-67
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,8 @@ jobs:
1515
strategy:
1616
matrix:
1717
config:
18-
- ["Py3.8-Plone5.2", "3.8", "5.2"]
19-
- ["Py3.11-Plone6.0", "3.11", "6.0"]
20-
- ["Py3.13-Plone6.0", "3.13", "6.0"]
18+
- ["Py3.9-Plone6.0", "3.9", "6.0"]
19+
- ["Py3.13-Plone6.1", "3.13", "6.1"]
2120
steps:
2221
- uses: actions/checkout@v5
2322
- name: Set up Python ${{ matrix.config[1] }}

CHANGES.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Changelog
44
4.0.0 (unreleased)
55
------------------
66

7-
- Support only Python 3.8+ and Plone 5.2+
7+
- Support only Python 3.9+ and Plone 6.0+
88
[ale-rt]
99

1010

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ This table shows which version of collective.workspace is compatible with which
4242
+---------------+----------------------+---------------------------+
4343
| Plone | Python | collective.workspace |
4444
+===============+======================+===========================+
45-
| 5.2+ | 3.8+ | 4 |
45+
| 6.0+ | 3.9+ | 4 |
4646
+---------------+----------------------+---------------------------+
4747
| 5.1, 5.2 | 2.7 - 3.8 | 3 |
4848
+---------------+----------------------+---------------------------+

plone-5.2.x.cfg

Lines changed: 0 additions & 56 deletions
This file was deleted.

plone-6.1.x.cfg

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[buildout]
2+
extends =
3+
base.cfg
4+
https://dist.plone.org/release/6.1-latest/versions.cfg
5+
https://dist.plone.org/release/6.1-latest/versions-ecosystem.cfg
6+
https://dist.plone.org/release/6.1-latest/versions-extra.cfg
7+
find-links += https://dist.plone.org/thirdparty/
8+
versions=versions
9+
show-picked-versions = true

requirements-5.2.txt

Lines changed: 0 additions & 3 deletions
This file was deleted.

requirements-6.1.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
-r https://dist.plone.org/release/6.1-latest/requirements.txt

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,10 @@
2323
"Environment :: Web Environment",
2424
"Framework :: Plone",
2525
"Framework :: Plone :: Addon",
26-
"Framework :: Plone :: 5.2",
2726
"Framework :: Plone :: 6.0",
27+
"Framework :: Plone :: 6.1",
2828
"Operating System :: OS Independent",
2929
"Programming Language :: Python",
30-
"Programming Language :: Python :: 3.8",
3130
"Programming Language :: Python :: 3.9",
3231
"Programming Language :: Python :: 3.10",
3332
"Programming Language :: Python :: 3.11",

src/collective/workspace/tests/workspace.robot

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ a test workspace
3838
Input text form-widgets-IBasic-title Test Workspace
3939
Click button Save
4040

41-
# There was a change in markup since Plone 6. The selector switched from:
41+
# This is done to support multiple Plone versions where the
42+
# Add New Menu structure changeds slightly. The selector switched from:
4243
# css=#plone-contentmenu-factories > div > ul
4344
# to:
4445
# css=#plone-contentmenu-factories > ul

0 commit comments

Comments
 (0)