Fix #5361: crashed on incremental build if document uses include directive

This commit is contained in:
Takeshi KOMIYA 2018-08-29 23:56:05 +09:00
parent 36a9c813e6
commit 5e22ff9045
2 changed files with 3 additions and 1 deletions

View File

@ -18,6 +18,8 @@ Features added
Bugs fixed Bugs fixed
---------- ----------
* #5361: crashed on incremental build if document uses include directive
Testing Testing
-------- --------

View File

@ -72,7 +72,7 @@ default_settings = {
# or changed to properly invalidate pickle files. # or changed to properly invalidate pickle files.
# #
# NOTE: increase base version by 2 to have distinct numbers for Py2 and 3 # NOTE: increase base version by 2 to have distinct numbers for Py2 and 3
ENV_VERSION = 52 + (sys.version_info[0] - 2) ENV_VERSION = 54 + (sys.version_info[0] - 2)
versioning_conditions = { versioning_conditions = {