-
Notifications
You must be signed in to change notification settings - Fork 25
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
Support for build_number in MatchSpec #446
Comments
Possibly related to #198 . |
I'm not sure how we can do this with libmamba 1.x. Their MatchSpec parser will drop unrecognised fields silently, such as >>> import libmambapy as lmp
>>> ms = lmp.MatchSpec("python[build_number=0]")
>>> ms.conda_build_form()
'python' We could assume build_number always goes at the end and use a glob str like |
Thanks @jaimergp ! I am not too much into |
For references, we found a workaround for this issue in conda-forge/gazebo-feedstock#203, so we are not blocked anymore by it, thanks! |
It's more like the |
Looking at old builds of gazebo (https://conda-metadata-app.streamlit.app/?q=conda-forge%2Flinux-64%2Fgazebo-11.14.0-h4154485_3.conda) indeed that seems the case. |
Checklist
What is the idea?
I am experiencing an error:
when trying to use
conda build
withconda-libmamba-solver
. The error did not occurred when usingconda mambabuild
orconda build
with the classic solver. The error is quite clear, but it am opening this issue to have to which to refer when I add workarounds for this issue.Why is this needed?
I am experiencing this problem in conda-forge/gazebo-feedstock#203 .
What should happen?
Ideally
conda build
withconda-libmamba-solver
should work likeconda mambabuild
orconda build
with classic solver.Additional Context
I am not sure the title of the issue make sense, feel free to suggest a better one, thanks!
The text was updated successfully, but these errors were encountered: