Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use Plone Sphinx Theme #1770

Merged
merged 13 commits into from
Nov 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 2 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,8 @@ clean: ## Clean docs build directory
cd $(DOCS_DIR) && rm -rf $(BUILDDIR)/

.PHONY: distclean
distclean: ## Clean docs build directory and Python virtual environment, then install requirements
cd $(DOCS_DIR) && rm -rf $(BUILDDIR)/
python3 -m venv venv --clear
venv/bin/pip install -r requirements-initial.txt
venv/bin/pip install -r requirements.txt
@echo
@echo "Installation of requirements completed."
distclean: clean ## Clean docs build directory and Python virtual environment
rm -rf venv

venv/bin/python: ## Setup up Python virtual environment and install requirements
python3 -m venv venv
Expand Down
Loading