Skip to content

Commit 15f3d6d

Browse files
committed
wip: remove plone < 6 tests and add plone 6.1
1 parent 04c0939 commit 15f3d6d

14 files changed

+28
-217
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,26 +14,22 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
include:
17-
- python: 2.7
18-
plone: 4.3
19-
- python: 2.7
20-
plone: 5.1
21-
- python: 3.8
22-
plone: 5.2
23-
- python: 3.8
17+
- python: 3.12
2418
plone: "6.0"
19+
- python: 3.13
20+
plone: "6.1"
2521
steps:
2622
- name: Checkout
27-
uses: actions/checkout@v2
23+
uses: actions/checkout@v4
2824
- name: Set up Python ${{ matrix.python }}
29-
uses: actions/setup-python@v2
25+
uses: actions/setup-python@v5
3026
with:
3127
python-version: ${{ matrix.python }}
3228
- name: Install dependencies
3329
run: |
3430
pip install -r requirements-${{matrix.plone}}.txt
3531
- name: Cache eggs
36-
uses: actions/cache@v2
32+
uses: actions/cache@v4
3733
env:
3834
cache-name: cache-eggs
3935
with:

.gitlab-ci.yml

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

.travis.yml

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

Makefile

Lines changed: 7 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -4,27 +4,17 @@ all: run
44

55
BUILDOUT_FILES = bin/buildout buildout.cfg buildout.d/*.cfg
66

7-
.PHONY: buildout-4.3 buildout-5.1 buildout-5.2 buildout-6.0 cleanall
8-
9-
buildout-4.3: cleanall
10-
virtualenv -p python2 .
11-
bin/pip install -r requirements-4.3.txt
12-
bin/buildout -c test_plone-4.3.cfg
13-
14-
buildout-5.1: cleanall
15-
virtualenv -p python2 .
16-
bin/pip install -r requirements-5.1.txt
17-
bin/buildout -c test_plone-5.1.cfg
18-
19-
buildout-5.2: cleanall
20-
virtualenv .
21-
bin/pip install -r requirements-5.2.txt
22-
bin/buildout -c test_plone-5.2.cfg
7+
.PHONY: buildout-6.0 buildout-6.1 cleanall
238

249
buildout-6.0: cleanall
2510
python3 -m venv .
2611
bin/pip install -r requirements-6.0.txt
2712
bin/buildout -c test_plone-6.0.cfg
28-
13+
14+
buildout-6.1: cleanall
15+
python3 -m venv .
16+
bin/pip install -r requirements-6.1.txt
17+
bin/buildout -c test_plone-6.1.cfg
18+
2919
cleanall:
3020
rm -fr bin develop-eggs lib include share .installed.cfg .mr.developer.cfg pyvenv.cfg parts downloads eggs

bobtemplate.cfg

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

buildout.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[buildout]
22

33
extends =
4-
test_plone-5.2.cfg
4+
test_plone-6.0.cfg

requirements-4.3.txt

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

requirements-5.1.txt

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

requirements-5.2.txt

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

requirements-6.1.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
-c https://dist.plone.org/release/6.1-latest/requirements.txt
2+
setuptools
3+
zc.buildout
4+
wheel
5+
pip

0 commit comments

Comments
 (0)