Skip to content
Draft
Show file tree
Hide file tree
Changes from all 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
4 changes: 2 additions & 2 deletions .github/workflows/black.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.8]
python-version: [3.11]

steps:
# git checkout
Expand All @@ -19,7 +19,7 @@ jobs:
python-version: ${{ matrix.python-version }}

# python cache
- uses: actions/cache@v1
- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/flake8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.8]
python-version: [3.11]

steps:
# git checkout
Expand All @@ -19,7 +19,7 @@ jobs:
python-version: ${{ matrix.python-version }}

# python cache
- uses: actions/cache@v1
- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pyroma.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.8]
python-version: [3.11]

steps:
# git checkout
Expand All @@ -19,7 +19,7 @@ jobs:
python-version: ${{ matrix.python-version }}

# python cache
- uses: actions/cache@v1
- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
Expand All @@ -28,7 +28,7 @@ jobs:

# install pyroma
- name: install pyroma
run: pip install pyroma
run: pip install pyroma==4.2

# run pyroma
- name: run pyroma
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ jobs:
strategy:
max-parallel: 4
matrix:
python: ["3.7"]
plone: ["52"]
python: ["3.11"]
plone: ["60"]
# exclude:
# - python: "3.7"
# plone: "51"
steps:
- uses: actions/checkout@v1
- name: Cache eggs
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: eggs
key: ${{ runner.OS }}-build-python${{ matrix.python }}-${{ matrix.plone }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/zpretty.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.8]
python-version: [3.11]

steps:
# git checkout
Expand All @@ -19,7 +19,7 @@ jobs:
python-version: ${{ matrix.python-version }}

# python cache
- uses: actions/cache@v1
- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
Expand Down
3 changes: 2 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ Changelog
2.1.1 (unreleased)
------------------

- Nothing changed yet.
- Plone 6 compatibility.
[cekk]


2.1.0 (2023-05-31)
Expand Down
1 change: 1 addition & 0 deletions constraints_plone60.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
-c https://dist.plone.org/release/6.0-latest/requirements.txt
1 change: 1 addition & 0 deletions constraints_plone61.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
-c https://dist.plone.org/release/6.1-latest/requirements.txt
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
-c constraints.txt
setuptools
zc.buildout
2 changes: 1 addition & 1 deletion src/redturtle/chefcookie/transformers/transform.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from zope.component import getMultiAdapter
from zope.component import getUtility
from zope.component import queryMultiAdapter
from zope.component.interfaces import ComponentLookupError
from zope.interface.interfaces import ComponentLookupError
from zope.interface import implementer
from zope.interface import Interface

Expand Down
22 changes: 0 additions & 22 deletions test_plone52.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -9,25 +9,3 @@ update-versions-file = test_plone52.cfg

[versions]
plone.testing = 7.0.1

# Added by buildout at 2021-12-30 15:58:32.220210
collective.recipe.vscode = 0.1.7
flake8 = 3.9.2
mccabe = 0.6.1
plone.recipe.codeanalysis = 3.0.1
pycodestyle = 2.7.0
pyflakes = 2.3.1

# Required by:
# redturtle.chefcookie==1.0
collective.jsconfiguration = 0.1.1

# Required by:
# redturtle.chefcookie==1.0
collective.regjsonify = 0.3.0

# Added by buildout at 2022-01-05 09:23:45.884226
zpretty = 2.1.0

# Added by buildout at 2022-02-02 17:29:45.340786
zipp = 1.1.1
8 changes: 8 additions & 0 deletions test_plone60.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[buildout]

extends =
https://raw.github.com/collective/buildout.plonetest/master/test-6.0.x.cfg
https://raw.githubusercontent.com/collective/buildout.plonetest/master/qa.cfg
base.cfg

[versions]
6 changes: 6 additions & 0 deletions test_plone61.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[buildout]
extends =
https://raw.github.com/collective/buildout.plonetest/master/test-6.1.x.cfg
https://raw.githubusercontent.com/collective/buildout.plonetest/master/qa.cfg
base.cfg
[versions]
Loading