-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New builds crashing at conda environment.yml install phase #5387
Comments
Looks like a missing dependency
|
@stsewd thanks for the quick reply. That is only in the most recent Build #8690163 (just created), version: 2
conda:
environment: docs/environment.yaml
python:
version: 3.6
install:
- method: pip
path: .
system_packages: true |
Maybe they are interfering from the packages in the docker image, can you remove the |
ok fixed by moving all but the non-python (pandoc) dependency to an extras_requirement: .readthedocs.yml: version: 2
conda:
environment: docs/environment.yaml
python:
version: 3.6
install:
- method: pip
path: .
extra_requirements:
- rtd docs/environment.yaml: channels:
- conda-forge
dependencies:
- python =3.6
- pandoc Two things I noted are:
|
and obviously, in the future, it might cut down on issues like this being raised, if there was a better error message. But I'll leave that up to you guys :) Cheers |
Conda is in charge of managing the python version when using conda. We can add a note about this in the docs.
oh, now I get it, that option only works for no-conda projects, because we use that option when we create the virtual environment, the environment creation is delegated to conda when the user uses conda. |
Ah, I see, no problem. Yeh just a few extra notes in the documentation would be good, |
Actually I see now, there is already documentation to this effect: https://docs.readthedocs.io/en/latest/guides/build-using-too-many-resources.html#use-pip-when-possible, |
Details
Expected Result
Successful install of Conda dependencies from environment.yaml
Actual Result
All builds from the last few days fail with:
There has been on change in the conda dependencies from the last successful build,
so I assume something has changed on the conda/rtd end?
From this related issues #5098, it looks like I may need to ask you to increase the memory limit?
The text was updated successfully, but these errors were encountered: