Skip to content

Commit

Permalink
Update .readthedocs.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tpike3 committed Jun 8, 2024
1 parent c574100 commit 99aece3
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@ build:
os: "ubuntu-22.04"
tools:
python: "3.10"
jobs:
#build an environment
pre-build:
- "export CUSTOM_ENV_DIR= /docs/build/"
- "mkdir -p $CUSTOM_ENV_DIR"
- "conda env create -p $CUSTOM_ENV_DIR -f docs/source/environment.yml"
- "export READTHEDOCS_VIRTUALENV_PATH=$CUSTOM_ENV_DIR"
post_build:
# Run the build commands within the specified environment
- "conda run -p $READTHEDOCS_VIRTUALENV_PATH sphinx-build -M html docs/source/ docs/build/"

python:
install:
Expand All @@ -23,13 +33,3 @@ sphinx:
fail_on_warning: false


jobs:
#build an environment
pre-install:
- "export CUSTOM_ENV_DIR= /docs/build/"
- "mkdir -p $CUSTOM_ENV_DIR"
- "conda env create -p $CUSTOM_ENV_DIR -f docs/source/environment.yml"
- "export READTHEDOCS_VIRTUALENV_PATH=$CUSTOM_ENV_DIR"
post_install:
# Run the build commands within the specified environment
- "conda run -p $READTHEDOCS_VIRTUALENV_PATH sphinx-build -M html docs/source/ docs/build/"

0 comments on commit 99aece3

Please sign in to comment.