Skip to content

Commit d03b0c3

Browse files
committed
2 parents 378f873 + 8ea55f2 commit d03b0c3

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

.editorconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ end_of_line = lf
99

1010
[*.py]
1111
indent_style = space
12+
max_line_length = 88
1213

1314
[*.{yml,yaml}]
1415
indent_style = space

docs/conf.py

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,19 @@
2727
# Be strict about any broken references:
2828
nitpicky = True
2929

30-
# Support intersphinx links
31-
extensions += [
32-
'sphinx.ext.intersphinx',
33-
]
30+
# Include Python intersphinx mapping to prevent failures
31+
# jaraco/skeleton#51
32+
extensions += ['sphinx.ext.intersphinx']
3433
intersphinx_mapping = {
3534
'python': ('https://docs.python.org/3', None),
36-
'importlib_resources': (
35+
}
36+
37+
intersphinx_mapping.update(
38+
importlib_resources=(
3739
'https://importlib-resources.readthedocs.io/en/latest/',
3840
None,
3941
),
40-
}
42+
)
4143

4244
# Workaround for #316
4345
nitpick_ignore = [

0 commit comments

Comments
 (0)