Skip to content

Commit 44a0f9a

Browse files
committed
MAINT: Use stable quartodoc
1 parent 3873ecf commit 44a0f9a

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

Makefile

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -56,19 +56,17 @@ clean-test:
5656
rm -fr htmlcov/
5757
rm -fr tests/result_images/*
5858

59-
ruff:
60-
$(UVRUN) ruff check . $(args)
61-
6259
format:
63-
$(UVRUN) ruff format . --check
60+
$(UVRUN) ruff format --check .
6461

6562
format-fix:
6663
$(UVRUN) ruff format .
6764

68-
lint: ruff
65+
lint:
66+
$(UVRUN) ruff check .
6967

7068
lint-fix:
71-
make lint args="--fix"
69+
$(UVRUN) ruff check --fix .
7270

7371
fix: format-fix lint-fix
7472

@@ -117,7 +115,7 @@ install: clean
117115
doc-dependencies:
118116
$(PIP) install -e ".[doc]"
119117
$(PIP) install -r requirements/doc.txt
120-
cd doc && make dependencies
118+
$(MAKE) -C doc dependencies
121119

122120
develop: clean-cache
123121
$(PIP) install -e ".[all]"

requirements/doc.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# These cannot be in pyproject.toml, pypi does not install git packages
2-
quartodoc @ git+https://github.com/machow/quartodoc#egg=quartodoc
2+
# quartodoc @ git+https://github.com/machow/quartodoc#egg=quartodoc
33
qrenderer @ git+https://github.com/has2k1/qrenderer#egg=qrenderer

0 commit comments

Comments
 (0)