From 8d4fc3b9918fb596f54a0ae22efeb0be4aec9027 Mon Sep 17 00:00:00 2001 From: fabcor Date: Wed, 17 Jan 2024 15:39:02 +0100 Subject: [PATCH] Fix `.readthedocs.yaml` GitHub: fix https://github.com/mxcube/mxcubecore/issues/839 --- .readthedocs.yaml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 9a254f21dc..e639aa2078 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -19,10 +19,16 @@ build: tools: python: "mambaforge-22.9" - commands: - - "mamba env create --file conda-environment-dev.yml" - - "mamba run --name mxcubecore poetry install --only=docs,main" - - "mamba run --name mxcubecore poetry run sphinx-build -T -E -b html -c ./docs/ ./docs/source/ ${READTHEDOCS_OUTPUT}/html/" + jobs: + post_install: + - "poetry install --only=docs,main" + +# commands: +# - "poetry install --only=docs,main" +# - "poetry run sphinx-build -T -E -b html -c ./docs/ ./docs/source/ ${READTHEDOCS_OUTPUT}/html/" + +conda: + environment: "conda-environment-dev.yml" ... # EOF