Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Makefile: Move sage_docbuild from PYPI_WHEEL_PACKAGES to WHEEL_PACKAGES
Browse files Browse the repository at this point in the history
  • Loading branch information
mkoeppe committed May 7, 2022
1 parent 83cfb74 commit b03779d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ pypi-sdists: sage_setup
# Ensuring wheels are present, even for packages that may have been installed
# as editable. Until we have better uninstallation of script packages, we
# just remove the timestamps, which will lead to rebuilds of the packages.
PYPI_WHEEL_PACKAGES = sage_sws2rst sage_docbuild sage_setup sagemath_objects sagemath_categories
PYPI_WHEEL_PACKAGES = sage_sws2rst sage_setup sagemath_objects sagemath_categories
pypi-wheels:
for a in $(PYPI_WHEEL_PACKAGES); do \
rm -f venv/var/lib/sage/installed/$$a-*; \
Expand All @@ -102,7 +102,8 @@ pypi-wheels:
done
@echo "Built wheels are in venv/var/lib/sage/wheels/"

WHEEL_PACKAGES = $(PYPI_WHEEL_PACKAGES) sage_conf sagelib
# sage_docbuild is here, not in PYPI_WHEEL_PACKAGES, because it depends on sagelib
WHEEL_PACKAGES = $(PYPI_WHEEL_PACKAGES) sage_conf sagelib sage_docbuild
wheels:
for a in $(WHEEL_PACKAGES); do \
rm -f venv/var/lib/sage/installed/$$a-*; \
Expand Down

0 comments on commit b03779d

Please sign in to comment.