From 3cfcd4cf3a911e79b1b1b5e51e5998f4383a9c03 Mon Sep 17 00:00:00 2001 From: wolearyc Date: Mon, 16 Sep 2024 15:24:03 -0700 Subject: [PATCH] manual build for readthedocs --- .readthedocs.yaml | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index d8f345b..d84e0d6 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -1,17 +1,16 @@ version: "2" build: - os: "ubuntu-22.04" + os: ubuntu-22.04 tools: python: "3.12" - -python: - install: - - requirements: docs/requirements.txt - - requirements: deps/requirements.txt - - requirements: deps/torch_requirements.txt -f https://data.pyg.org/whl/torch-2.4.0+cpu.html - - requirements: deps/torch_geometric_requirements.txt - - requirements: deps/torch_extra_requirements.txt + commands: + - python -m pip install --exists-action=w --no-cache-dir -r docs/requirements.txt + - python -m pip install --exists-action=w --no-cache-dir -r deps/requirements.txt + - python -m pip install --exists-action=w --no-cache-dir -r deps/torch_requirements.txt -f https://data.pyg.org/whl/torch-2.4.0+cpu.html + - python -m pip install --exists-action=w --no-cache-dir -r deps/torch_geometric_requirements.txt + - python -m pip install --exists-action=w --no-cache-dir -r deps/torch_extra_requirements.txt + - python -m sphinx -T -b html -d _build/doctrees -D language=en . $READTHEDOCS_OUTPUT/html sphinx: configuration: docs/source/conf.py