You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The build to continue, and in this case the virtual environment to be created. I'm willing to concede that I might be configuring things wrong so I've attached my yaml file below. Namely my python project needs to be installed for the docs to generate. To do so I need a conda environment and to be able to run a command (a make with a specific rule) post-install to generate additional text included in the .rst files.
Actual Result
On the command: python -mvirtualenv $READTHEDOCS_VIRTUALENV_PATH
The following error is produced: virtualenv: error: the following arguments are required: dest
.readthedocs.yaml reference:
version: 2
conda:
environment: environment.yml
# Required for project building and versioning
python:
install:
- method: pip
path: .
build:
os: ubuntu-22.04
tools:
python: "3.8"
jobs:
post_install:
- make -C doc cmdline-help
# Build documentation in the docs/ directory with Sphinx
sphinx:
configuration: doc/conf.py
Thanks for your time and consideration.
The text was updated successfully, but these errors were encountered:
Details
Expected Result
The build to continue, and in this case the virtual environment to be created. I'm willing to concede that I might be configuring things wrong so I've attached my yaml file below. Namely my python project needs to be installed for the docs to generate. To do so I need a conda environment and to be able to run a command (a make with a specific rule) post-install to generate additional text included in the .rst files.
Actual Result
On the command:
python -mvirtualenv $READTHEDOCS_VIRTUALENV_PATH
The following error is produced:
virtualenv: error: the following arguments are required: dest
.readthedocs.yaml reference:
Thanks for your time and consideration.
The text was updated successfully, but these errors were encountered: