ID: 151fd6bb71c55063a2f827d2b80258902f71181a
37 lines
—
674B —
View raw
| SHELL = /bin/bash
REPOSITORY = https://github.com/astropy/reproject.git
check_env_vars:
ifdef OUTPUT_PATH
OUTPUT_PATH := ${OUTPUT_PATH}/astropy-reproject
else
$(error OUTPUT_PATH is undefined)
endif
venv-3.9:
export PYENV_VERSION=3.9
python3 -m venv venv
venv-3.7:
export PYENV_VERSION=3.7
python3 -m venv venv
repository:
git clone ${REPOSITORY} repository
v0.9.1 v0.13.0: check_env_vars venv-3.9 repository
source venv/bin/activate
cd repository
git checkout tags/$@
pip install .[docs]
cd docs
make clean
make dirhtml
mkdir --parents "${OUTPUT_PATH}"
cp --recursive _build/dirhtml "${OUTPUT_PATH}/$@"
.ONESHELL:
.SUFFIXES:
.PHONY:
.DELETE_ON_ERROR:
|