Skip to content

Commit

Permalink
fix(pyproject): separate mkdocstrings-python
Browse files Browse the repository at this point in the history
...instead of installing via extra due to infinite recursion in nix devshell build
Signed-off-by: Cameron Smith <[email protected]>
  • Loading branch information
cameronraysmith committed Dec 24, 2023
1 parent 159726b commit ce32246
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
15 changes: 7 additions & 8 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ jupyterlab = { version = "4.0.9", optional = true }
jupytext = { version = "1.16.0", optional = true }
mkdocs-jupyter = { version = "0.24.6", optional = true }
mkdocs-material = { version = "9.4.14", optional = true }
mkdocstrings = { version = "0.24.0", optional = true, extras = ["python"] }
mkdocstrings = { version = "0.24.0", optional = true }
mkdocstrings-python = { version = "1.7.5", optional = true }
mypy = { version = "1.7.1", optional = true }
notebook = { version = "6.4.13", optional = true }
poethepoet = { version = "0.24.4", optional = true }
Expand Down Expand Up @@ -90,7 +91,8 @@ jupyterlab = "4.0.9"
jupytext = "1.16.0"
mkdocs-jupyter = "0.24.6"
mkdocs-material = "9.4.14"
mkdocstrings = { version = "0.24.0", extras = ["python"] }
mkdocstrings = "0.24.0"
mkdocstrings-python = "1.7.5"
notebook = "6.4.13"

[tool.poetry.extras]
Expand Down

0 comments on commit ce32246

Please sign in to comment.