Ben Mares
Ben Mares
Sounds good to me, perhaps under `build_name`? Note that this involves a (non-breaking, I think) change to the unified lockfile spec. @mariusvniekerk, now that we're post-graduation, is there a procedure...
Ah, indeed! Given that, from my perspective, I think this should be straightforward to get merged.
We get build number from micromamba; see https://github.com/conda/conda-lock/issues/338#issuecomment-1428699111. The format from Conda is a bit different though. I don't remember off the top of my head.
Conda/Mamba: ```json { "base_url": "https://conda.anaconda.org/conda-forge", "build_number": 0, "build_string": "pyhd8ed1ab_0", "channel": "conda-forge", "dist_name": "pip-23.0.1-pyhd8ed1ab_0", "name": "pip", "platform": "noarch", "version": "23.0.1" } ``` Micromamba: ```json { "build": "pyhd8ed1ab_0", "build_number": 0, "build_string": "pyhd8ed1ab_0",...
I'm in favor of adding all the available data. One potential challenge is that we work with PyPI dependencies, and I'm not sure if or how much we use the...
Thanks!!! To clarify, are you asking about the lockfile version? If so, then my understanding (meaning what I say should be verified with people like Marius and Wolf) is that...
Awesome, thanks for the tip!!! This will be an enormous help.
Yes, I've been wanting to implement something like this for a while. One of the most confusing parts for me of the conda-lock codebase is understanding when a dependency is...
Thanks a lot @pep-sanwer for the thoughtful comments! I like your suggestion, and your explanation of your usage. To put it in my own words: * PyPI dependencies should go...
Hi, thanks for the report. Could you please try the `main` branch of conda-lock and check if that fixes your issue? Assuming you installed via `pipx`, you can install it...