-
Notifications
You must be signed in to change notification settings - Fork 52
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
Channel priority should be set to strict and conda info should be printed with conda-store #359
Comments
I think that channel priority strict is already set. It would be nice to have the output of:
|
You would just be adding commands to the https://github.com/Quansight/conda-store/blob/main/conda-store-server/conda_store_server/build.py#L145-L159 you would be adding an additional command here running conda info/conda config --show. Or it might be worth running all in the same command. We are not using |
I'd also like to confirm that we are setting channel priority to strict and ensure that its not pulling in things from defaults or anywhere else. |
Assigning this to @nkaretnikov |
See also #659. Potential duplicate. |
Note: the block of code that Chris refers to above is actually this (no hash was specified in the link and it's been refactored since then):
145 def build_environment(conda_command, environment_filename, conda_prefix):
146
147 return subprocess.check_output(
148 [
149 conda_command,
150 "env",
151 "create",
152 "-p",
153 conda_prefix,
154 "-f",
155 str(environment_filename),
156 ],
157 stderr=subprocess.STDOUT,
158 encoding="utf-8",
159 ) |
Status update: this should be fixed by #693. |
Right now some solves are pulling in multiple channels that were not specified.
The text was updated successfully, but these errors were encountered: