Skip to content
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

RFC: Resolvers and environment management in ASV #1436

Open
HaoZeke opened this issue Oct 7, 2024 · 1 comment
Open

RFC: Resolvers and environment management in ASV #1436

HaoZeke opened this issue Oct 7, 2024 · 1 comment

Comments

@HaoZeke
Copy link
Member

HaoZeke commented Oct 7, 2024

There are now a bunch of front-end (CLI) tools which handle dependency resolution and installation of environments, including rip, rye (both already dropped out1), and uv.

A key issue is that most of these tools (including mamba) don't actually expose the functionality which asv really needs2, that is the dependency resolution / a Python API (e.g. see astral-sh/uv#7345) itself. This is accomplished via pubgrub-rs in uv, resolvo in pixi / rip and the venerable libsolv in mamba.

Somewhat related are these issues around the ecosystem:

Basically, moving forward, it seems like the best approach is to generate bindings to uv internals like the dependency resolution while extracting the environment management out further. Or by using py-rattler (here). Although the CycloneDX SBOM might also be of interest as an intermediate file format 3.

Another option is to use subprocess to drive calls to uv or something similar, but in the long run this is more problematic, since parsing CLI is never a great idea, and also leaves the project vulnerable to changes in the in internal lock file representation.

Footnotes

  1. e.g. this comment

  2. e.g. the trouble with the libmambapy dependency which needed a new release since part of the API was removed.

  3. https://github.com/CycloneDX/cyclonedx-python

@HaoZeke
Copy link
Member Author

HaoZeke commented Oct 7, 2024

For some more context, this matters to asv because when run with existing environments, we still need to know the changes to versions relative to the last known configuration.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant