-
Notifications
You must be signed in to change notification settings - Fork 427
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
Use lazy Index
in conda-build
#5363
Conversation
CodSpeed Performance ReportMerging #5363 will not alter performanceComparing Summary
|
"ignore:conda.core.index._supplement_index_with_system is pending deprecation:PendingDeprecationWarning:conda", | ||
"ignore:conda.core.index._make_virtual_package is pending deprecation:PendingDeprecationWarning:conda", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should fix these warnings instead of ignoring them, I'd say.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Well, yes, but these come from conda-libmamba-solver, so I judged that fix outside the scope of this PR.
Of course we can make the fix in a branch there and use that development version here as well.
@@ -6,7 +6,7 @@ | |||
from os.path import dirname | |||
|
|||
from conda.base.context import context | |||
from conda.core.index import get_index | |||
from conda.core.index import Index |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In principle, we won't need this during the deprecation period, right? So we can release a new conda without this PR and it should work, correct?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes.
Hm. Seems I cannot reopen this PR. Too many times? I'll try if commenting fixes that and otherwise open a new PR. |
Description
Checklist - did you ...
news
directory (using the template) for the next release's release notes?