File tree 2 files changed +13
-14
lines changed
2 files changed +13
-14
lines changed Original file line number Diff line number Diff line change 18
18
19
19
sys .path .insert (0 , os .path .abspath ('..' ))
20
20
sys .path .append (os .path .dirname (__file__ ))
21
- os .environ .setdefault (' DJANGO_SETTINGS_MODULE' , ' readthedocs.settings.dev' )
21
+ os .environ .setdefault (" DJANGO_SETTINGS_MODULE" , " readthedocs.settings.dev" )
22
22
23
23
try :
24
24
# Nesting in try to avoid isort inflicting unwanted changes. It tries to
25
25
# move these imports above the very necessary sys.path manipulation.
26
26
import django
27
27
from django .utils import timezone
28
+
28
29
django .setup ()
29
30
except ImportError :
30
31
raise
66
67
67
68
templates_path = ['_templates' ]
68
69
69
- master_doc = 'index'
70
- copyright = '2010-{}, Read the Docs, Inc & contributors' .format (
71
- timezone .now ().year
72
- )
73
- version = '7.4.2'
70
+ master_doc = "index"
71
+ copyright = "2010-{}, Read the Docs, Inc & contributors" .format (timezone .now ().year )
72
+ version = "7.4.2"
74
73
release = version
75
74
exclude_patterns = ['_build' ]
76
75
default_role = 'obj'
95
94
'rtd-dev' : ('https://dev.readthedocs.io/en/latest/' , None ),
96
95
}
97
96
myst_enable_extensions = [
98
- ' deflist' ,
97
+ " deflist" ,
99
98
]
100
99
hoverxref_intersphinx = [
101
- ' sphinx' ,
102
- ' pip' ,
103
- ' nbsphinx' ,
104
- ' myst-nb' ,
105
- ' ipywidgets' ,
106
- ' jupytext' ,
100
+ " sphinx" ,
101
+ " pip" ,
102
+ " nbsphinx" ,
103
+ " myst-nb" ,
104
+ " ipywidgets" ,
105
+ " jupytext" ,
107
106
]
108
107
htmlhelp_basename = 'ReadTheDocsdoc'
109
108
latex_documents = [
Original file line number Diff line number Diff line change 1
1
"""Read the Docs."""
2
2
3
3
4
- __version__ = ' 7.4.2'
4
+ __version__ = " 7.4.2"
You can’t perform that action at this time.
0 commit comments