Skip to content

Commit b2aabce

Browse files
authored
Merge pull request #41 from plone/config-with-default-template-2.5.1
config with default template 2.5.1 [ci-skip]
2 parents 345a47e + d6a3ffa commit b2aabce

11 files changed

Lines changed: 13 additions & 12 deletions

File tree

.github/workflows/test-matrix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- ["ubuntu", "ubuntu-latest"]
2020
config:
2121
# [Python version, visual name, tox env]
22-
- ["3.13", "6.2 on py3.13", "py313-plone62"]
22+
- ["3.14", "6.2 on py3.14", "py314-plone62"]
2323
- ["3.10", "6.2 on py3.10", "py310-plone62"]
2424

2525
runs-on: ${{ matrix.os[1] }}

.meta.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# See the inline comments on how to expand/tweak this configuration file
44
[meta]
55
template = "default"
6-
commit-id = "2.2.0"
6+
commit-id = "2.5.1"
77

88
[tox]
99
test_matrix = {"6.2" = ["*"]}

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ repos:
1010
rev: v3.21.2
1111
hooks:
1212
- id: pyupgrade
13-
args: [--py38-plus]
13+
args: [--py310-plus]
1414
- repo: https://github.com/pycqa/isort
15-
rev: 7.0.0
15+
rev: 8.0.1
1616
hooks:
1717
- id: isort
1818
- repo: https://github.com/psf/black-pre-commit-mirror
19-
rev: 25.12.0
19+
rev: 26.1.0
2020
hooks:
2121
- id: black
2222
- repo: https://github.com/collective/zpretty

news/+meta.internal

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Update configuration files.
2+
[plone devs]

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# https://github.com/plone/meta/tree/main/src/plone/meta/default
33
# See the inline comments on how to expand/tweak this configuration file
44
[build-system]
5-
requires = ["setuptools>=68.2,<80", "wheel"]
5+
requires = ["setuptools>=68.2,<83", "wheel"]
66

77
[tool.towncrier]
88
directory = "news/"
@@ -60,7 +60,7 @@ profile = "plone"
6060
##
6161

6262
[tool.black]
63-
target-version = ["py38"]
63+
target-version = ["py310"]
6464

6565
##
6666
# Add extra configuration options in .meta.toml:

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
from pathlib import Path
22
from setuptools import setup
33

4-
54
version = "3.0.0a2.dev0"
65

76
long_description = (

src/plone/caching/hooks.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414

1515
import logging
1616

17-
1817
logger = logging.getLogger("plone.caching")
1918

2019

src/plone/caching/interfaces.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
import zope.i18nmessageid
55

6-
76
_ = zope.i18nmessageid.MessageFactory("plone")
87

98
X_CACHE_RULE_HEADER = "X-Cache-Rule"

src/plone/caching/tests/test_operations.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313

1414
import unittest
1515

16-
1716
_marker = object()
1817

1918

src/plone/caching/tests/test_utils.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
import unittest
1414
import zope.component.testing
1515

16-
1716
_marker = object()
1817

1918

0 commit comments

Comments
 (0)