Skip to content

Commit 7c627ac

Browse files
Merge pull request #464 from collective/maurits-use-newer-code
Use newer code, fix deprecations
2 parents 2f2bcf0 + df2bd61 commit 7c627ac

53 files changed

Lines changed: 808 additions & 936 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGES.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ Changelog
55
4.5.1 (unreleased)
66
------------------
77

8-
- Nothing changed yet.
8+
- Remove usage of the ``six`` compatibility library. [maurits]
9+
- Update deprecated imports for Plone 6.0 and higher. [maurits]
910

1011

1112
4.5.0 (2026-01-12)

docs/conf.py

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
#
32
# collective.easyform documentation build configuration file, created by
43
# sphinx-quickstart on Mon Feb 24 23:51:08 2014.
@@ -51,8 +50,8 @@
5150
master_doc = "index"
5251

5352
# General information about the project.
54-
project = u"collective.easyform"
55-
copyright = u"2014, Roman Kozlovskyi"
53+
project = "collective.easyform"
54+
copyright = "2014, Roman Kozlovskyi"
5655

5756
# The version info for the project you're documenting, acts as replacement for
5857
# |version| and |release|, also used in various other places throughout the
@@ -195,8 +194,8 @@
195194
(
196195
"index",
197196
"collectiveeasyform.tex",
198-
u"collective.easyform Documentation",
199-
u"Roman Kozlovskyi",
197+
"collective.easyform Documentation",
198+
"Roman Kozlovskyi",
200199
"manual",
201200
),
202201
]
@@ -230,8 +229,8 @@
230229
(
231230
"index",
232231
"collectiveeasyform",
233-
u"collective.easyform Documentation",
234-
[u"Roman Kozlovskyi"],
232+
"collective.easyform Documentation",
233+
["Roman Kozlovskyi"],
235234
1,
236235
)
237236
]
@@ -249,8 +248,8 @@
249248
(
250249
"index",
251250
"collectiveeasyform",
252-
u"collective.easyform Documentation",
253-
u"Roman Kozlovskyi",
251+
"collective.easyform Documentation",
252+
"Roman Kozlovskyi",
254253
"collectiveeasyform",
255254
"One line description of project.",
256255
"Miscellaneous",

setup.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
from setuptools import find_packages
32
from setuptools import setup
43

@@ -54,7 +53,6 @@
5453
"Products.CMFPlone>=6.0.0b1",
5554
"Products.validation>=3.0.0",
5655
"setuptools",
57-
"six",
5856
# -*- Extra requirements: -*-
5957
],
6058
extras_require={

src/collective/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
# -*- coding: utf-8 -*-
21
__import__("pkg_resources").declare_namespace(__name__)

src/collective/easyform/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
from zope.i18nmessageid import MessageFactory
32

43

0 commit comments

Comments
 (0)