Skip to content

Commit 3ae7879

Browse files
committed
Migration to Plone 6.1.3
1 parent 52c868c commit 3ae7879

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

base.cfg

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ extensions =
44
mr.developer
55

66
extends =
7-
https://dist.plone.org/release/6.1.1/versions.cfg
8-
https://dist.plone.org/release/6.1.1/versions-ecosystem.cfg
9-
https://dist.plone.org/release/6.1.1/versions-extra.cfg
7+
https://dist.plone.org/release/6.1.3/versions.cfg
8+
https://dist.plone.org/release/6.1.3/versions-ecosystem.cfg
9+
https://dist.plone.org/release/6.1.3/versions-extra.cfg
1010
https://raw.githubusercontent.com/IMIO/buildout.news/main/sources.cfg
11-
https://raw.githubusercontent.com/IMIO/buildout.smartweb/main/versions.cfg
12-
https://raw.githubusercontent.com/IMIO/buildout.smartweb/main/sources.cfg
11+
https://raw.githubusercontent.com/IMIO/buildout.smartweb/plone613/versions.cfg
12+
https://raw.githubusercontent.com/IMIO/buildout.smartweb/plone613/sources.cfg
1313

1414
find-links +=
1515
https://eggs.imio.be/find-links/common/

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
-r https://dist.plone.org/release/6.1.1/requirements.txt
1+
-r https://dist.plone.org/release/6.1.3/requirements.txt

src/imio/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
# -*- coding: utf-8 -*-
2-
__import__("pkg_resources").declare_namespace(__name__)
2+
from pkgutil import extend_path
3+
4+
__path__ = extend_path(__path__, __name__)

src/imio/news/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
# -*- coding: utf-8 -*-
2-
__import__("pkg_resources").declare_namespace(__name__)
2+
from pkgutil import extend_path
3+
4+
__path__ = extend_path(__path__, __name__)

0 commit comments

Comments
 (0)