From 8af4d911d7bf13e4763c2577c1f534c9fa78328d Mon Sep 17 00:00:00 2001 From: Alexandre Vicenzi Date: Sat, 19 Sep 2020 19:40:16 +0200 Subject: [PATCH] Test with newer Python --- .travis.yml | 2 ++ docs/pelicanconf.py | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/.travis.yml b/.travis.yml index 1cf0993..4b648e3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,8 @@ language: python python: - "3.6" + - "3.7" + - "3.8" install: - pip install -r docs/requirements.txt script: pelican -s docs/pelicanconf.py diff --git a/docs/pelicanconf.py b/docs/pelicanconf.py index 2f06b6e..5516350 100644 --- a/docs/pelicanconf.py +++ b/docs/pelicanconf.py @@ -18,6 +18,12 @@ PATH = 'content' OUTPUT_PATH = 'blog/' TIMEZONE = 'America/New_York' +PLUGIN_PATHS = ['pelican-plugins'] + +# PLUGINS = ['i18n_subsites'] + +# JINJA_ENVIRONMENT = {'extensions': ['jinja2.ext.i18n']} + I18N_TEMPLATES_LANG = 'en' DEFAULT_LANG = 'en' OG_LOCALE = 'en_US'