From: David Lord Date: Wed, 29 Jan 2020 05:48:37 +0000 (-0800) Subject: bump bytecode cache version X-Git-Tag: 3.0.0a1~2^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8468d3a98f35f6a06bb5416c0f245a7b5a67fb8e;p=thirdparty%2Fjinja.git bump bytecode cache version --- diff --git a/src/jinja2/bccache.py b/src/jinja2/bccache.py index 70b99c53..7ddcf405 100644 --- a/src/jinja2/bccache.py +++ b/src/jinja2/bccache.py @@ -18,7 +18,7 @@ from io import BytesIO from .utils import open_if_exists -bc_version = 4 +bc_version = 5 # Magic bytes to identify Jinja bytecode cache files. Contains the # Python major and minor version to avoid loading incompatible bytecode # if a project upgrades its Python version.