Skip to content

Commit a9de513

Browse files
committed
Drop the automatic generation of the FAQ (for now)
For this to work faqtory needs to be a development dependency of Textual. Textual still maintains support for Python 3.7; faqtory is Python 3.8 or greater. So, for the moment, we're going to cheat a little and make it so that you have to remember to run faqtory to rebuild FAQ.md. All hail the walrus!
1 parent bb20cdc commit a9de513

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,22 +43,22 @@ docs-online-nav:
4343
cat mkdocs-nav.yml >> mkdocs-nav-online.yml
4444

4545
.PHONY: docs-serve
46-
docs-serve: clean-screenshot-cache docs-online-nav faq
46+
docs-serve: clean-screenshot-cache docs-online-nav
4747
$(run) mkdocs serve --config-file mkdocs-nav-online.yml
4848
rm -f mkdocs-nav-online.yml
4949

5050
.PHONY: docs-serve-offline
51-
docs-serve-offline: clean-screenshot-cache docs-offline-nav faq
51+
docs-serve-offline: clean-screenshot-cache docs-offline-nav
5252
$(run) mkdocs serve --config-file mkdocs-nav-offline.yml
5353
rm -f mkdocs-nav-offline.yml
5454

5555
.PHONY: docs-build
56-
docs-build: docs-online-nav faq
56+
docs-build: docs-online-nav
5757
$(run) mkdocs build --config-file mkdocs-nav-online.yml
5858
rm -f mkdocs-nav-online.yml
5959

6060
.PHONY: docs-build-offline
61-
docs-build-offline: docs-offline-nav faq
61+
docs-build-offline: docs-offline-nav
6262
$(run) mkdocs build --config-file mkdocs-nav-offline.yml
6363
rm -f mkdocs-nav-offline.yml
6464

@@ -67,7 +67,7 @@ clean-offline-docs:
6767
rm -rf docs-offline
6868

6969
.PHONY: docs-deploy
70-
docs-deploy: clean-screenshot-cache docs-online-nav faq
70+
docs-deploy: clean-screenshot-cache docs-online-nav
7171
$(run) mkdocs gh-deploy --config-file mkdocs-nav-online.yml
7272
rm -f mkdocs-nav-online.yml
7373

0 commit comments

Comments
 (0)