Skip to content

Commit

Permalink
fix: declare sphinx-rtd-theme in docs extras (#253)
Browse files Browse the repository at this point in the history
Currently sphinx-rtd-theme is incorrectly being included in the main
group dependencies and hence pulls in itself and sphinx as a runtime dep
for the client. Declaring it in the docs group ensures it is only
installed if the `sdcclient[docs]` is installed.

Signed-off-by: Dominic Evans <[email protected]>
  • Loading branch information
dnwe authored Oct 2, 2024
1 parent aef4bba commit 9d18376
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ flake8 = "^3.8.4"
coverage = "^6.2"

[tool.poetry.extras]
docs = ["sphinx", "sphinx-material"]
docs = ["sphinx", "sphinx-material", "sphinx-rtd-theme"]

[tool.poetry-dynamic-versioning]
enable = true
Expand Down

0 comments on commit 9d18376

Please sign in to comment.