Skip to content

Commit

Permalink
Downgrade alavbaster
Browse files Browse the repository at this point in the history
  • Loading branch information
nabobalis committed Aug 8, 2024
1 parent c8f753d commit 4f9ae64
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ notebook =
markdown =
myst-parser>=0.17.0
docs =
alabaster
alabaster<1.0.0
sphinx-automodapi
tests =
pytest
Expand Down
7 changes: 6 additions & 1 deletion src/ablog/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ def setup(app):
"""
Setup ABlog extension.
"""
app.require_sphinx("6.2")
for args in CONFIG:
app.add_config_value(*args[:3])
app.add_directive("post", PostDirective)
Expand All @@ -164,4 +165,8 @@ def setup(app):
pkgdir = os.path.abspath(os.path.dirname(__file__))
locale_dir = os.path.join(pkgdir, "locales")
app.add_message_catalog(MESSAGE_CATALOG_NAME, locale_dir)
return {"version": __version__, "parallel_read_safe": True}
return {
"version": __version__,
"parallel_read_safe": True,
"parallel_write_safe": True,
}

0 comments on commit 4f9ae64

Please sign in to comment.