Skip to content

Commit

Permalink
Merge pull request #168 from plone/fix-multilingual-dependency
Browse files Browse the repository at this point in the history
plone.app.multilingual is not a hard dependency
  • Loading branch information
davisagli authored Dec 11, 2024
2 parents 32d4a57 + af29519 commit 92a7a26
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .meta.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ extra_lines = """
[pyproject]
codespell_skip = "*.min.js,*lock.yaml"
codespell_ignores = "vew"
dependencies_ignores = "['collective.folderishtypes', 'plone.app.caching', 'requests', 'responses', 'zest.releaser', 'zestreleaser.towncrier']"
dependencies_ignores = "['collective.folderishtypes', 'plone.app.caching', 'plone.app.multilingual', 'requests', 'responses', 'zest.releaser', 'zestreleaser.towncrier']"
dependencies_mappings = [
"'Products.CMFPlone' = ['Acquisition', 'BTrees', 'Missing', 'OFS', 'plone.app.contenttypes', 'plone.app.layout', 'plone.app.linkintegrity', 'plone.app.redirector', 'plone.app.registry', 'plone.app.textfield', 'plone.app.vocabularies', 'plone.app.z3cform', 'plone.autoform', 'plone.base', 'plone.behavior', 'plone.dexterity', 'plone.indexer', 'plone.namedfile', 'plone.protect', 'plone.registry', 'plone.rfc822', 'plone.schema', 'plone.supermodel', 'Products.BTreeFolder2', 'Products.CMFCore', 'Products.Five', 'Products.GenericSetup', 'Products.SiteErrorLog', 'transaction', 'z3c.form', 'z3c.relationfield', 'zope.component', 'zope.i18n', 'zope.i18nmessageid', 'zope.interface', 'zope.lifecycleevent', 'zope.publisher', 'zope.schema', 'Zope']",
"'plone.restapi' = ['plone.rest']",
Expand Down
1 change: 1 addition & 0 deletions news/168.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix plone.app.multilingual dependency to be a dependency for tests only. @davisagli
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ python-dateutil = ['dateutil']
pytest-plone = ['pytest', 'zope.pytestlayer', 'plone.testing', 'plone.app.testing']
'Products.CMFPlone' = ['Acquisition', 'BTrees', 'Missing', 'OFS', 'plone.app.contenttypes', 'plone.app.layout', 'plone.app.linkintegrity', 'plone.app.redirector', 'plone.app.registry', 'plone.app.textfield', 'plone.app.vocabularies', 'plone.app.z3cform', 'plone.autoform', 'plone.base', 'plone.behavior', 'plone.dexterity', 'plone.indexer', 'plone.namedfile', 'plone.protect', 'plone.registry', 'plone.rfc822', 'plone.schema', 'plone.supermodel', 'Products.BTreeFolder2', 'Products.CMFCore', 'Products.Five', 'Products.GenericSetup', 'Products.SiteErrorLog', 'transaction', 'z3c.form', 'z3c.relationfield', 'zope.component', 'zope.i18n', 'zope.i18nmessageid', 'zope.interface', 'zope.lifecycleevent', 'zope.publisher', 'zope.schema', 'Zope']
'plone.restapi' = ['plone.rest']
ignore-packages = ['collective.folderishtypes', 'plone.app.caching', 'requests', 'responses', 'scripts.utils', 'zest.releaser', 'zestreleaser.towncrier']
ignore-packages = ['collective.folderishtypes', 'plone.app.caching', 'plone.app.multilingual', 'requests', 'responses', 'scripts.utils', 'zest.releaser', 'zestreleaser.towncrier']

##
# Add extra configuration options in .meta.toml:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
"collective.monkeypatcher",
"plone.api",
"plone.app.caching",
"plone.app.multilingual",
"plone.distribution",
"plone.restapi>=8.41.0",
"Products.CMFPlone",
Expand All @@ -55,6 +54,7 @@
"responses",
"plone.app.discussion",
"plone.app.iterate",
"plone.app.multilingual",
"plone.app.robotframework",
"plone.app.testing",
"plone.app.upgrade",
Expand Down

0 comments on commit 92a7a26

Please sign in to comment.