From 28b153982dad1a18323c708b205a486e267e8550 Mon Sep 17 00:00:00 2001 From: Kai Schlamp Date: Wed, 25 Sep 2024 21:03:23 +0000 Subject: [PATCH] Make docs dependencies non optional again --- dev-env | 2 +- poetry.lock | 2 +- pyproject.toml | 4 ---- 3 files changed, 2 insertions(+), 6 deletions(-) diff --git a/dev-env b/dev-env index 4543c2ffd..b374a2a74 100755 --- a/dev-env +++ b/dev-env @@ -61,6 +61,6 @@ echo "We've gone ahead and set up a few additional commands for you:" echo "- htmlcov: Opens the test coverage results in your browser" echo "- htmldoc: Opens the locally built sphinx documentation in your browser" echo "- lint: Run code formatters & linters" -echo "- docs: Build doc (note: needs 'poetry install --with docs' which needs a recent Python)" +echo "- docs: Build doc" echo "" echo 'Quit the poetry shell with the command `deactivate`' diff --git a/poetry.lock b/poetry.lock index 818035c29..f4862714c 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1887,4 +1887,4 @@ sqlalchemy = ["sqlalchemy"] [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "c28b113dc79183263b4b933fc30f54de06c861bbf3f5c3128b6de5b06cab4bfd" +content-hash = "e88d066984b0c6d684aa21f007b9eee8cb3c0fa48eb7f55d4a39b5598822e648" diff --git a/pyproject.toml b/pyproject.toml index 5c9d0b1af..c260f50e1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -92,11 +92,7 @@ migra = "*" # (pkg_resources). setuptools = { version = "*" } -[tool.poetry.group.docs] -optional = true - [tool.poetry.group.docs.dependencies] - django = ">=2.2" furo = "*" Sphinx = "*"