Skip to content

Commit 5d7c46e

Browse files
committed
Black
1 parent 11f14a6 commit 5d7c46e

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.meta.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ codespell_skip = "*"
1010
codespell_ignores = "vew"
1111
dependencies_ignores = "['plone.volto', 'zestreleaser.towncrier', 'zest.releaser', 'pytest', 'pytest-cov', 'pytest-plone', 'pytest-docker']"
1212
dependencies_mappings = [
13-
"Plone = ['Products.CMFPlone', 'Products.CMFCore', 'Products.GenericSetup']",
13+
"Products.CMFPlone = ['Zope', 'Products.CMFCore', 'plone.app.caching', 'plone.app.iterate', 'plone.indexer', 'plone.protect', 'plone.schema']",
1414
]
1515
check_manifest_ignores = """
1616
"news/*",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,8 @@ Zope = [
124124
]
125125
python-dateutil = ['dateutil']
126126
pytest-plone = ['pytest', 'zope.pytestlayer', 'plone.testing', 'plone.app.testing']
127+
'Products.CMFPlone' = ['Zope', 'Products.CMFCore', 'plone.app.caching', 'plone.app.iterate', 'plone.indexer', 'plone.protect', 'plone.schema']
127128
ignore-packages = ['plone.volto', 'zestreleaser.towncrier', 'zest.releaser', 'pytest', 'pytest-cov', 'pytest-plone', 'pytest-docker']
128-
Plone = ['Products.CMFPlone', 'Products.CMFCore', 'Products.GenericSetup']
129129

130130
##
131131
# Add extra configuration options in .meta.toml:

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Installer for the kitconcept.solr package."""
2+
23
from pathlib import Path
34
from setuptools import find_packages
45
from setuptools import setup
@@ -48,12 +49,15 @@
4849
"Tracker": "https://github.com/kitconcept/kitconcept.portal/issues",
4950
},
5051
install_requires=[
51-
"Plone>=5.2.0",
52+
"Products.CMFPlone>=5.2.0",
5253
"plone.restapi",
5354
# "plone.restapi>=8.40.0", # for Plone 6.0
5455
"plone.api",
56+
"plone.app.multilingual",
5557
"setuptools",
5658
"collective.solr>=9.0.1",
59+
"Products.CMFCore",
60+
"Zope",
5761
],
5862
extras_require={
5963
"test": [

0 commit comments

Comments
 (0)