Skip to content

Commit

Permalink
undo pin
Browse files Browse the repository at this point in the history
  • Loading branch information
nabobalis committed Aug 8, 2024
1 parent 4f9ae64 commit 183f6ff
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
5 changes: 2 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,11 @@
disqus_shortname = "https-ablog-readthedocs-io"
disqus_pages = True
fontawesome_link_cdn = "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
html_style = "alabaster.css"
html_theme = "alabaster"
html_sidebars = {
"**": [
"about.html",
"about.html", # Comes from alabaster
"searchfield.html", # Comes from alabaster
"ablog/postcard.html",
"ablog/recentposts.html",
"ablog/tagcloud.html",
Expand All @@ -81,7 +81,6 @@
"ablog/authors.html",
"ablog/languages.html",
"ablog/locations.html",
"searchbox.html",
]
}
html_theme_options = {
Expand Down
2 changes: 2 additions & 0 deletions docs/release/ablog-v0.11-released.rst
Original file line number Diff line number Diff line change
Expand Up @@ -105,4 +105,6 @@ ABlog v0.11.11 released
-----------------------

Mark Ablog parallel safe.

Dropped support for Python 3.9, Sphinx less than 6.2.
This mirrors the requirements for alabaster 1.0.0.
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<1.0.0
alabaster>=1.0.0
sphinx-automodapi
tests =
pytest
Expand Down
4 changes: 2 additions & 2 deletions src/ablog/start.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,10 @@ def w(t, ls=80):
# In addition, there are authors.html, languages.html, and locations.html
# sidebars that link to author and location archive pages.
html_sidebars = {{
'**': [ 'ablog/postcard.html', 'navigation.html',
'**': [ 'ablog/postcard.html', 'navigation.html',
'ablog/recentposts.html', 'ablog/tagcloud.html',
'ablog/categories.html', 'ablog/archives.html',
'searchbox.html',
'searchfield.html',
],
}}
Expand Down

0 comments on commit 183f6ff

Please sign in to comment.