What's Changed
Conda-lock v3 introduces support for mamba / micromamba v2, and includes several important bugfixes.
Only mamba / micromamba versions <2 or >=2.0.7 are supported. (2.0.0–2.0.6 are incompatible.)
The only intended breaking change is to require at least Python 3.9 (previously 3.8). There are several major underlying changes to be aware of:
- The PyPI solver has been updated to Poetry v2.0.1. (#637, #678, #685, #769)
- Lockfiles now support dependencies with multiple categories. (#697)
pixi
Pixi is an innovative new tool for Conda projects that includes lockfile support. While the project-centric philosophy of pixi is different from the environment-centric approach of conda-lock, in many cases it offers a compelling alternative to conda-lock. For a discussion of conda-lock vs pixi, see #615.
Conda-lock v3 includes a new render-lock-spec
subcommand capable of exporting conda-lock lock specifications (including ordinary pyproject.toml
files) to pixi.toml
configurations. See the pixi migration guide for more information.
Detailed changelog
New features
- Support Multiple Categories for Sub-Dependencies in Lockfile (Rebase #390) by @srilman in #697
- Sort BaseLockedDependency.dependencies when alpha-sorting a Lockfile by @peterbygrave in #654
- Add support for PEP 508 environment markers by @maresb in #684
- Improve loading of PyPI mapping by @maresb in #690
- Add render-lock-spec subcommand for exporting lock specification to pixi.toml by @maresb in #664
- Add pixi.toml configuration by @maresb in #705, #706
- Support Micromamba v2 by @maresb in #713, #717, #723, #720, #721, #788
- Add/improve support for Path dependencies and GIT dependencies by @romain-intel in #712
- Add
--force-platform
toconda-lock install
command. by @jezdez in #753 - Add environment variables for conda/mamba/micromamba by @maresb in #760
Bugfixes
- Fix parsing of Poetry's caret and tilde dependencies by @maresb in #679, #683, #714
- Refactor lock command and fix an edge case by @maresb in #695
- Fix erroneous PyPI to Conda dep name conversion for PyPI deps by @maresb in #701, #704
- Fix KeyError: 'pkgs_dirs' by @maresb in #733
- Minor bugfix: don't truncate the extension in conda-meta filenames by @maresb in #744
- Add --quiet flag in conda command to disable progress bar by @maresb in #756
- Fix an issue that caused transitive dependencies to not have categories by @romain-intel in #768
- Use build_string in build field in fake package by @RSchwan in #776
- Log stderr warnings as warnings by @maresb in #772
- Fix race condition with lookup cache by @maresb in #785
Documentation
- Clarify that existing lockfiles are used for relocking by @sfinkens in #632
- Correct mistake in basic usage documentation by @sfinkens in #647
- Create a basic pixi migration guide by @maresb in #708
Maintenance
- Update Poetry to 2.0.1 by @romain-intel in #637, #678, #685, #769
- Update GHA release workflow to use trusted publishing / OIDC by @maresb in #631, #700
- Replace logger.warn w/ logger.warning by @zklaus in #646
- Fix failing mypy check by @maresb in #648
- Do a strict pkg meta check @ release CD workflow by @webknjaz in #657
- Log the solve command (DEBUG) by @maresb in #662
- Show default values in CLI by @maresb in #661
- Fix vulnerable version of black in test by @maresb in #680
- Update .gitignore for pixi by @maresb in #681
- Split virtual-package repo from LockSpecification by @maresb in #663
- Add vendoring script by @maresb in #682
- Add integration tests by @maresb in #686
- Collect test duration data for various runner configurations by @maresb in #687
- Use a quicker example for the channel-inversion test by @maresb in #688
- Split tests into multiple runners with pytest-split by @maresb in #689
- Simplify pytest GHA workflow by @maresb in #691
- Fix test that fails when cache is deleted by @maresb in #694
- Reduce Ubuntu and MacOS runners from 4 to 3 by @maresb in #696
- Code migrations for Pydantic v2 by @maresb in #692
- Revendor conda by @maresb in #699
- Install conda-lock with pipx in integration tests for better isolation by @maresb in #698
- Refactor to make mapping url explicit and eliminate LookupLoader by @maresb in #703
- Echo bash commands during integration test by @maresb in #711
- Use JSON version of the default PyPI mapping by @maresb in #715
- Improve error message when update fails due to channel conflict by @maresb in #735
- More refactoring of lookup module by @maresb in #738
- Fix deprecation warnings by @maresb in #740
- Fix missing codecov token by @maresb in #745
- Use PAT for PRs when updating lockfile by @maresb in #752
- Channel cleanup by @maresb in #747
- Update miniconda Docker image to use the maintained one. by @jezdez in #755
- Allow to call
conda-lock -h
(argparse default) instead ofconda-lock --help
by @basnijholt in #765 - Fix new CI failures by @maresb in #773
- Minor improvements to tests and logging by @maresb in #787
- Generate lockfiles for separate Python versions and test accordingly by @maresb in #789
- Refactor to eliminate code duplication in test by @maresb in #790
New Contributors
- @zklaus made their first contribution in #646
- @peterbygrave made their first contribution in #654
- @webknjaz made their first contribution in #657
- @RSchwan made their first contribution in #776
Full Changelog: v2.5.7...v3.0.0