ID: 900232072b6c9e1bd2ca636e0d9a350a4caeb972
67 lines
—
1K —
View raw
| SHELL = /bin/bash
REPOSITORY = https://github.com/scverse/anndata.git
check_env_vars:
ifdef OUTPUT_PATH
OUTPUT_PATH := ${OUTPUT_PATH}/anndata
else
$(error OUTPUT_PATH is undefined)
endif
venv-3.11:
export PYENV_VERSION=3.11
python3 -m venv venv
venv-3.10:
export PYENV_VERSION=3.10
python3 -m venv venv
venv-3.7:
export PYENV_VERSION=3.7
python3 -m venv venv
repository:
git clone ${REPOSITORY} repository
0.10.7: check_env_vars venv-3.11 repository
source venv/bin/activate
cd repository
git checkout tags/$@
# This is required to download the "docs/tutorials/notebooks" git submodule
git submodule update --init --recursive
pip install .[doc] matplotlib
cd docs
make clean
make dirhtml
mkdir --parents "${OUTPUT_PATH}"
cp --recursive _build/dirhtml "${OUTPUT_PATH}/$@"
0.9.2: check_env_vars venv-3.10 repository
source venv/bin/activate
cd repository
git checkout tags/$@
# This is required to download the "docs/tutorials/notebooks" git submodule
git submodule update --init --recursive
pip install .[doc] matplotlib
cd docs
make clean
make dirhtml
mkdir --parents "${OUTPUT_PATH}"
cp --recursive _build/dirhtml "${OUTPUT_PATH}/$@"
0.7.8 0.8.0: check_env_vars venv-3.7 repository
source venv/bin/activate
cd repository
git checkout tags/$@
pip install .[doc] matplotlib
cd docs
make clean
make dirhtml
mkdir --parents "${OUTPUT_PATH}"
cp --recursive _build/dirhtml "${OUTPUT_PATH}/$@"
.ONESHELL:
.SUFFIXES:
.PHONY:
.DELETE_ON_ERROR:
|