Skip to content

Commit

Permalink
Merge pull request #1647 from freakboy3742/sphinx-autobuild-py3.8
Browse files Browse the repository at this point in the history
Correct sphinx-autobuild dependency for Py3.8
  • Loading branch information
mhsmith committed Feb 14, 2024
2 parents 43dc5a4 + bf55596 commit 0e8aca2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions changes/1646.misc.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Corrected sphinx-autobuild dependency for Python 3.8.
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,9 @@ docs = [
"sphinx == 7.1.2 ; python_version < '3.9'",
"sphinx == 7.2.6 ; python_version >= '3.9'",
"sphinx_tabs == 3.4.5",
"sphinx-autobuild == 2024.2.4",
# Sphinx 2024.2.4 deprecated support for Python 3.8
"sphinx-autobuild == 2021.3.14 ; python_version < '3.9'",
"sphinx-autobuild == 2024.2.4 ; python_version >= '3.9'",
"sphinx-copybutton == 0.5.2",
"sphinxcontrib-spelling == 8.0.0",
]
Expand Down

0 comments on commit 0e8aca2

Please sign in to comment.