File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ notebook =
3737markdown =
3838 myst-parser>=0.17.0
3939docs =
40- alabaster
40+ alabaster<1.0.0
4141 sphinx-automodapi
4242tests =
4343 pytest
Original file line number Diff line number Diff line change @@ -141,6 +141,7 @@ def setup(app):
141141 """
142142 Setup ABlog extension.
143143 """
144+ app .require_sphinx ("6.2" )
144145 for args in CONFIG :
145146 app .add_config_value (* args [:3 ])
146147 app .add_directive ("post" , PostDirective )
@@ -164,4 +165,8 @@ def setup(app):
164165 pkgdir = os .path .abspath (os .path .dirname (__file__ ))
165166 locale_dir = os .path .join (pkgdir , "locales" )
166167 app .add_message_catalog (MESSAGE_CATALOG_NAME , locale_dir )
167- return {"version" : __version__ , "parallel_read_safe" : True }
168+ return {
169+ "version" : __version__ ,
170+ "parallel_read_safe" : True ,
171+ "parallel_write_safe" : True ,
172+ }
You can’t perform that action at this time.
0 commit comments