Bump conda-libmamba-solver to 26.4.2#878
Merged
Merged
Conversation
26.4.0 has a database locking bug in shards_cache.py that causes sqlite3.OperationalError during concurrent solves. Fixed in 26.4.1 and 26.4.2. This is breaking conda CI since the base miniforge environment ships 26.4.0, and the locking error hits before test dependencies can be installed.
This was referenced May 14, 2026
kenodegard
pushed a commit
to conda/conda
that referenced
this pull request
May 14, 2026
…16097) Miniforge currently ships c-l-s 26.4.0 which has a sqlite database locking bug in shards_cache.py. The base conda that resolves test dependencies crashes before the environment can be set up. Upgrade c-l-s to >=26.4.1 in base after setup-miniconda and before the main conda install step. Temporary workaround until miniforge ships c-l-s >=26.4.1 (conda-forge/miniforge#878).
3 tasks
jaimergp
reviewed
May 14, 2026
Co-authored-by: jaimergp <jaimergp@users.noreply.github.com>
jaimergp
reviewed
May 14, 2026
jaimergp
approved these changes
May 14, 2026
Contributor
|
Thanks. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
conda-libmamba-solver 26.4.0 (currently shipped in miniforge 26.3.2-1) has a database locking bug in
shards_cache.pythat causessqlite3.OperationalError: database is lockedduring concurrent solves.This is breaking downstream CI (e.g. conda's own test suite) because the base miniforge environment ships 26.4.0, and the locking error hits during dependency installation before the test environment can even be set up.
The fix landed in 26.4.1 (https://github.com/conda/conda-libmamba-solver/releases/tag/26.4.1) with further improvements in 26.4.2 (https://github.com/conda/conda-libmamba-solver/releases/tag/26.4.2).
Example failure: https://github.com/conda/conda/actions/runs/25867286560/job/76012696400?pr=16096