Skip to content

Commit 49d74a2

Browse files
committed
WIP
1 parent a238ac1 commit 49d74a2

4 files changed

Lines changed: 11 additions & 15 deletions

File tree

.github/workflows/test-matrix.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,10 @@ jobs:
2020
config:
2121
# [Python version, visual name, tox env]
2222
- ["3.13", "6.2 on py3.13", "py313-plone62"]
23-
- ["3.10", "6.2 on py3.10", "py310-plone62"]
2423
- ["3.13", "6.1 on py3.13", "py313-plone61"]
25-
- ["3.10", "6.1 on py3.10", "py310-plone61"]
24+
- ["3.11", "6.1 on py3.11", "py311-plone61"]
25+
- ["3.9", "6.0 on py3.9", "py39-plone60"]
2626
- ["3.13", "6.0 on py3.13", "py313-plone60"]
27-
- ["3.10", "6.0 on py3.10", "py310-plone60"]
2827

2928
runs-on: ${{ matrix.os[1] }}
3029
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name

.meta.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,6 @@
44
[meta]
55
template = "default"
66
commit-id = "2.3.1"
7+
8+
[tox]
9+
test_matrix = {"6.2" = ["3.13"], "6.1" = ["3.13", "3.11"], "6.0" = ["3.13", "3.9"]}

setup.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,16 @@
2525
"Environment :: Web Environment",
2626
"Framework :: Plone",
2727
"Framework :: Plone :: Addon",
28-
"Framework :: Plone :: 5.2",
2928
"Framework :: Plone :: 6.0",
29+
"Framework :: Plone :: 6.1",
30+
"Framework :: Plone :: 6.2",
3031
"Programming Language :: Python",
31-
"Programming Language :: Python :: 3.8",
3232
"Programming Language :: Python :: 3.9",
3333
"Programming Language :: Python :: 3.10",
3434
"Programming Language :: Python :: 3.11",
35+
"Programming Language :: Python :: 3.12",
36+
"Programming Language :: Python :: 3.13",
3537
"Operating System :: OS Independent",
36-
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
3738
],
3839
keywords="Python Plone CMS",
3940
author="ale-rt",
@@ -50,7 +51,7 @@
5051
package_dir={"": "src"},
5152
include_package_data=True,
5253
zip_safe=False,
53-
python_requires=">=3.8",
54+
python_requires=">=3.9",
5455
install_requires=["setuptools", "plone.api", "pdbpp", "rich"],
5556
extras_require={
5657
"test": [

tox.ini

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,10 @@ envlist =
88
lint
99
test
1010
py313-plone62
11-
py312-plone62
12-
py311-plone62
13-
py310-plone62
1411
py313-plone61
15-
py312-plone61
1612
py311-plone61
17-
py310-plone61
1813
py313-plone60
19-
py312-plone60
20-
py311-plone60
21-
py310-plone60
14+
py39-plone60
2215
dependencies
2316

2417

0 commit comments

Comments
 (0)