From 0ab29ba49a94eb69e0d9780b8cf6068da94242b7 Mon Sep 17 00:00:00 2001 From: Povilas Kanapickas Date: Wed, 3 Oct 2018 23:22:20 -0700 Subject: [PATCH] Preprocess: Use new caching features available in premailer 3.3.0 --- commands/preprocess_cssless.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/commands/preprocess_cssless.py b/commands/preprocess_cssless.py index 2f75d5a..27b6e71 100644 --- a/commands/preprocess_cssless.py +++ b/commands/preprocess_cssless.py @@ -70,7 +70,9 @@ def preprocess_html_merge_css(root, src_path): with warnings.catch_warnings(): warnings.simplefilter("ignore") premailer = Premailer(root, base_url=src_path, - disable_link_rewrites=True, remove_classes=True) + disable_link_rewrites=True, remove_classes=True, + cache_css_parsing=True, + cache_css_parsing_size=None) root = premailer.transform().getroot() return output.getvalue()