Skip to content

Commit 3957694

Browse files
authored
Merge pull request #186 from plone/config-with-default-template-2.5.1
config with default template 2.5.1 [ci-skip]
2 parents 959048e + 22210e4 commit 3957694

File tree

22 files changed

+17
-30
lines changed

22 files changed

+17
-30
lines changed

.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.3.1"
6+
commit-id = "2.5.1"
77

88
[github]
99
jobs = [

.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,6 +1,5 @@
11
from setuptools import setup
22

3-
43
version = "4.0.0a2.dev0"
54

65

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
from zope.i18nmessageid import MessageFactory
22

3-
43
PloneMessageFactory = MessageFactory("plone")
54

65
_PMF = PloneMessageFactory

src/plone/app/standardtiles/common.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
import Acquisition
2020
import logging
2121

22-
2322
logger = logging.getLogger(__name__)
2423

2524

src/plone/app/standardtiles/embed.py

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

77
import requests
88

9-
109
NOEMBED_ENDPOINT = "https://noembed.com/embed?url="
1110

1211

src/plone/app/standardtiles/existingcontent.py

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

2727
import copy
2828

29-
3029
try:
3130
from plone.app.z3cform.widgets.contentbrowser import (
3231
ContentBrowserFieldWidget as ExistingContentBrowserWidget,

0 commit comments

Comments
 (0)