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
One feature that we could theoretically look at would be to modify the behavior of conda so that instead of it just doing a GET to <CHANNEL_URL>/repodata.json.bz2 it instead does a post to the same url with an payload of the packages already present in the target environment
{
'packages': [
'python 3.7.1', ...
]
}
This would allow us to dynamically be able to generate the constained repodata without needing to resort to fairly gross url path based approaches.
The text was updated successfully, but these errors were encountered:
One feature that we could theoretically look at would be to modify the behavior of conda so that instead of it just doing a GET to
<CHANNEL_URL>/repodata.json.bz2
it instead does a post to the same url with an payload of the packages already present in the target environmentThis would allow us to dynamically be able to generate the constained repodata without needing to resort to fairly gross url path based approaches.
The text was updated successfully, but these errors were encountered: