Skip to content

Commit cc25d12

Browse files
Add classifiers.
And appease python-check-versions, as I don't want to increase `requires_python` at this moment.
1 parent 9d48e5d commit cc25d12

3 files changed

Lines changed: 12 additions & 0 deletions

File tree

.meta.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,9 @@ test_extras = """
1414
tests
1515
"""
1616
test_matrix = { "6.0" = ["*"] }
17+
envlist_lines = """
18+
# Add envs to prevent python-check-versions to complain,
19+
# which would force us to set requires_python to 3.9+,
20+
# which I don't want to do in a bugfix release.
21+
py38-plone60
22+
"""

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727
"Programming Language :: Python :: 3.9",
2828
"Programming Language :: Python :: 3.10",
2929
"Programming Language :: Python :: 3.11",
30+
"Programming Language :: Python :: 3.12",
31+
"Programming Language :: Python :: 3.13",
3032
"Topic :: Software Development :: Libraries :: Python Modules",
3133
],
3234
keywords="plone schema field",

tox.ini

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ envlist =
1313
py310-plone60
1414
py39-plone60
1515
dependencies
16+
# Add envs to prevent python-check-versions to complain,
17+
# which would force us to set requires_python to 3.9+,
18+
# which I don't want to do in a bugfix release.
19+
py38-plone60
1620

1721

1822
##

0 commit comments

Comments
 (0)