From becc54702adbf610acab1d397c8db98763b896d1 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Thu, 21 Apr 2016 11:20:04 +0900 Subject: [PATCH] Increment ENV_VERSION for #2456 --- sphinx/environment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/environment.py b/sphinx/environment.py index af6eb4d0da0..a23344af727 100644 --- a/sphinx/environment.py +++ b/sphinx/environment.py @@ -75,7 +75,7 @@ class ElementLookupError(Exception): # or changed to properly invalidate pickle files. # # NOTE: increase base version by 2 to have distinct numbers for Py2 and 3 -ENV_VERSION = 47 + (sys.version_info[0] - 2) +ENV_VERSION = 48 + (sys.version_info[0] - 2) dummy_reporter = Reporter('', 4, 4)