Skip to content
Merged
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
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ help:
@python3 -c "$$PRINT_HELP_PYSCRIPT" < $(MAKEFILE_LIST)

clone: ## Clone latest cpython repository to `../cpython/` if it doesn't exist
git clone --depth 1 --no-single-branch https://github.com/python/cpython.git $(CPYTHON_CLONE) || echo "cpython exists"
cd $(CPYTHON_CLONE) && git checkout $(BRANCH)
git clone --depth 1 --no-single-branch https://github.com/mattwang44/cpython.git $(CPYTHON_CLONE) || echo "cpython exists"
cd $(CPYTHON_CLONE) && git checkout fix-pyspecific-sphinx-locale-gettext


$(VENV)/bin/activate:
Expand All @@ -67,7 +67,7 @@ $(VENV)/bin/activate:


$(VENV)/bin/sphinx-build: $(VENV)/bin/activate
. $(VENV)/bin/activate; python3 -m pip install "sphinx<5.3" python-docs-theme
. $(VENV)/bin/activate; python3 -m pip install "sphinx==5.3" python-docs-theme


$(VENV)/bin/blurb: $(VENV)/bin/activate
Expand Down