Skip to content

Commit 9df6443

Browse files
farhanclaude
andcommitted
Fix CI: add doc8 to doc group, remove stale *.py glob from quality target
- Add doc8 to the doc dependency group (was missing, needed by tox docs env) - Remove *.py glob from quality make target (setup.py no longer exists) - Remove --recursive flag from isort (deprecated in isort 5.x) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 0b82eb5 commit 9df6443

3 files changed

Lines changed: 37 additions & 7 deletions

File tree

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ upgrade: ## update the uv.lock file with the latest packages satisfying pyprojec
3434
uv lock --upgrade
3535

3636
quality: ## check coding style with pycodestyle and pylint
37-
pylint xapi_db_load *.py
38-
pycodestyle xapi_db_load *.py
39-
pydocstyle xapi_db_load *.py
37+
pylint xapi_db_load
38+
pycodestyle xapi_db_load
39+
pydocstyle xapi_db_load
4040
mypy xapi_db_load
41-
isort --check-only --diff --recursive xapi_db_load *.py
41+
isort --check-only --diff xapi_db_load
4242
uv run python -m build
4343
twine check dist/*
4444
make selfcheck

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ quality = [
8282
doc = [
8383
{include-group = "test"},
8484
"build",
85+
"doc8",
8586
"Sphinx",
8687
"sphinx-book-theme",
8788
"twine",

uv.lock

Lines changed: 32 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)