home » zplus/dokk.git
ID: 9649c5d07e93b38074d79d1d3a480045e2c20290
32 lines — 614B — View raw


SHELL = /bin/bash

REPOSITORY = https://github.com/astropy/astroquery.git

check_env_vars:
ifdef OUTPUT_PATH
OUTPUT_PATH := ${OUTPUT_PATH}/astropy-astroquery
else
	$(error OUTPUT_PATH is undefined)
endif

venv-3.8:
	export PYENV_VERSION=3.8
	python3 -m venv venv

repository:
	git clone ${REPOSITORY} repository

v0.4.5 v0.4.6: check_env_vars venv-3.8 repository
	source venv/bin/activate
	cd repository
	git checkout tags/$@
	pip install .[all,docs]
	cd docs
	make clean dirhtml
	mkdir --parents "${OUTPUT_PATH}"
	cp --recursive _build/dirhtml "${OUTPUT_PATH}/$@"

.ONESHELL:
.SUFFIXES:
.PHONY:
.DELETE_ON_ERROR: