Skip to content

Commit

Permalink
BUILD: Fix sphinx-autobuild for Python3.8 (#5178)
Browse files Browse the repository at this point in the history
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Sébastien Morais <[email protected]>
  • Loading branch information
dependabot[bot] and SMoraisAnsys authored Sep 23, 2024
1 parent 949d676 commit 04e6079
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ doc = [
"recommonmark",
"scikit-rf>=0.30.0,<1.4",
"Sphinx>=7.1.0,<8.1",
"sphinx-autobuild==2024.9.3; python_version == '3.8'",
# NOTE: latest compatible version for Python 3.8 is 2021.3.14
"sphinx-autobuild==2021.3.14; python_version == '3.8'",
"sphinx-autobuild==2024.9.3; python_version > '3.8'",
#"sphinx-autodoc-typehints",
"sphinx-copybutton>=0.5.0,<0.6",
Expand All @@ -103,7 +104,8 @@ doc-no-examples = [
"numpydoc>=1.5.0,<1.9",
"recommonmark",
"Sphinx>=7.1.0,<8.1",
"sphinx-autobuild==2024.9.3; python_version == '3.8'",
# NOTE: latest compatible version for Python 3.8 is 2021.3.14
"sphinx-autobuild==2021.3.14; python_version == '3.8'",
"sphinx-autobuild==2024.9.3; python_version > '3.8'",
#"sphinx-autodoc-typehints",
"sphinx-copybutton>=0.5.0,<0.6",
Expand Down

0 comments on commit 04e6079

Please sign in to comment.