aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDavid Lord <davidism@gmail.com>2020-01-28 21:48:37 -0800
committerDavid Lord <davidism@gmail.com>2020-02-05 08:44:19 -0800
commit8468d3a98f35f6a06bb5416c0f245a7b5a67fb8e (patch)
tree41c4a124325e347cc95197a17024fe578d290a29 /src
parent2a8515d2e53a2be475d9df3fe44e308501201a95 (diff)
downloadjinja-8468d3a98f35f6a06bb5416c0f245a7b5a67fb8e.tar.gz
bump bytecode cache version
Diffstat (limited to 'src')
-rw-r--r--src/jinja2/bccache.py2
1 files changed, 1 insertions, 1 deletions
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.