We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 378f873 + 8ea55f2 commit d03b0c3Copy full SHA for d03b0c3
.editorconfig
@@ -9,6 +9,7 @@ end_of_line = lf
9
10
[*.py]
11
indent_style = space
12
+max_line_length = 88
13
14
[*.{yml,yaml}]
15
docs/conf.py
@@ -27,17 +27,19 @@
27
# Be strict about any broken references:
28
nitpicky = True
29
30
-# Support intersphinx links
31
-extensions += [
32
- 'sphinx.ext.intersphinx',
33
-]
+# Include Python intersphinx mapping to prevent failures
+# jaraco/skeleton#51
+extensions += ['sphinx.ext.intersphinx']
34
intersphinx_mapping = {
35
'python': ('https://docs.python.org/3', None),
36
- 'importlib_resources': (
+}
+
37
+intersphinx_mapping.update(
38
+ importlib_resources=(
39
'https://importlib-resources.readthedocs.io/en/latest/',
40
None,
41
),
-}
42
+)
43
44
# Workaround for #316
45
nitpick_ignore = [
0 commit comments