-
Notifications
You must be signed in to change notification settings - Fork 1
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
Messed up conda envs in build on Windows #6
Comments
I wonder if a Maybe the base windows image has Python installed now. |
So we have a It does seem like it must be either a conda change or a github windows image change (as you suggested). We're hard-coding which version of the I'll test in workflow-sandbox and add some printlines to identify the Python interpreter, and keep an eye on the Actually I'll do nothing for a little bit, since others might encounter the problem and put in the work so we don't have to. If not then I'll investigate as above. |
Fix is to use a newer setup-miniconda. Don't know why the old one doesn't work, but it was failing to activate environments properly. Latest has no issues. We were pinned to an old version of Fix in workflow-sandbox: rpanderson/workflow-sandbox@8525772 Need to deploy this to every repo... |
The windows build fails with:
Despite that the workflow has:
where
setuptools-conda
depends ontoml
.The log output shows conda installing
toml
, however the job I'm looking at is supposed to be for Python 3.6, whereas some of the packages being installed are clearly 3.9 builds. So something is wrong about the conda environment setup. Like, theconda
command is installing packages to one environment, but then thepython
command is a different environment (or different Python interpreter altogether).Grumble grumble
The text was updated successfully, but these errors were encountered: