From 42ef5a156778848fe15d5a6688170e091623fd75 Mon Sep 17 00:00:00 2001 From: Damien George Date: Wed, 9 Mar 2016 12:43:22 +0000 Subject: [PATCH] docs: Allow list of versions to be specified by environment variable. --- docs/conf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 6ff7cb0d95..a4ef78bc08 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -34,6 +34,7 @@ ports = OrderedDict(( # The members of the html_context dict are available inside topindex.html micropy_version = os.getenv('MICROPY_VERSION') or 'latest' +micropy_all_versions = (os.getenv('MICROPY_ALL_VERSIONS') or 'latest').split(',') url_pattern = '%s/en/%%s/%%s' % (os.getenv('MICROPY_URL_PREFIX') or '/',) html_context = { 'port':micropy_port, @@ -46,7 +47,7 @@ html_context = { ], 'all_versions':[ (ver, url_pattern % (ver, micropy_port)) - for ver in ('v1.4', 'v1.4.1', 'v1.5', 'v1.6', 'latest') + for ver in micropy_all_versions ], }