sphinx-build detects configuration changes, allthough conf.py is unchanged.
loading pickled environment... The configuration has changed (3 options: 'needs_layouts', 'needs_types', 'pygments_dark_style')
Codex found that the fields need_layouts and needs_types are changed by GithubService
Following workarounds:
Fix for layout:
needs_layouts = {
"example_layout": { ...},
# workaround
"github": deepcopy(GITHUB_LAYOUT),
}
Fix for directives:
needs_types.extend(
[
{
"directive": "issue",
"title": "Issue",
"prefix": "IS_",
"color": "#cccccc",
"style": "card",
},
{
"directive": "pr",
"title": "PullRequest",
"prefix": "PR_",
"color": "#aaaaaa",
"style": "card",
},
{
"directive": "commit",
"title": "Commit",
"prefix": "C_",
"color": "#888888",
"style": "card",
},
]
)
Then:
loading pickled environment... The configuration has changed (1 option: 'pygments_dark_style')
It doesnt seem to affect the actual build process.
sphinx-build detects configuration changes, allthough conf.py is unchanged.
Codex found that the fields need_layouts and needs_types are changed by GithubService
Following workarounds:
Fix for layout:
Fix for directives:
Then:
It doesnt seem to affect the actual build process.