From 81924e690a987c2dade45ee2a2c4cb6e8bb653f6 Mon Sep 17 00:00:00 2001 From: Gauthier Bastien Date: Tue, 7 Jun 2022 12:36:37 +0200 Subject: [PATCH 1/2] Do not flake8 safe_utils.py --- src/collective/contact/core/safe_utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/collective/contact/core/safe_utils.py b/src/collective/contact/core/safe_utils.py index 6aebc37..399ddad 100644 --- a/src/collective/contact/core/safe_utils.py +++ b/src/collective/contact/core/safe_utils.py @@ -1,4 +1,5 @@ # encoding: utf-8 +# flake8: noqa from collective.contact.core.utils import get_gender_and_number from collective.contact.core.utils import get_position_type_name From 0c26c05f736daeb5f7a549eb8d1ca92d61c0325f Mon Sep 17 00:00:00 2001 From: Gauthier Bastien Date: Tue, 7 Jun 2022 12:57:10 +0200 Subject: [PATCH 2/2] use future = 0.18.2 as html.escape backport is not available in old future... --- versions.cfg | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/versions.cfg b/versions.cfg index 073b6aa..90ae813 100644 --- a/versions.cfg +++ b/versions.cfg @@ -4,4 +4,6 @@ zc.buildout = 2.13.3 # python 2 ... traitlets = 4.3.2 # misc -python-dateutil = 2.8.0 \ No newline at end of file +python-dateutil = 2.8.0 +# html.escape backport is not available in old future... +future = 0.18.2