Separate dependency group for docs

Refs https://github.com/simonw/sqlite-utils/pull/691#issuecomment-3644188372
This commit is contained in:
Simon Willison 2025-12-11 15:16:31 -08:00
commit 43c8edf013
2 changed files with 9 additions and 8 deletions

View file

@ -10,7 +10,7 @@ build:
jobs:
install:
- pip install --upgrade pip
- pip install --group dev
- pip install --group docs
formats:
- pdf

View file

@ -37,13 +37,6 @@ dev = [
"cogapp",
"hypothesis",
"pytest",
# docs
"beanbag-docutils>=2.0",
"codespell",
"furo",
"pygments-csv-lexer",
"sphinx-autobuild",
"sphinx-copybutton",
# mypy
"data-science-types",
"mypy",
@ -55,6 +48,14 @@ dev = [
"flake8",
"flake8-pyproject",
]
docs = [
"beanbag-docutils>=2.0",
"codespell",
"furo",
"pygments-csv-lexer",
"sphinx-autobuild",
"sphinx-copybutton",
]
[project.urls]
Homepage = "https://github.com/simonw/sqlite-utils"