You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently (in 1.24 ) when building package and we have missing prebuilt conan will spew output like this: cant find a .. settings: "...", "options: "...", requires: "..."
However conan search reference .. only outputs validoptions, settings. requires output is slightly off - its basically a full_requires - not sure why decision was made to print [full_requires] in place of [requires]
Making requires print the original value would allow for direct matching between these two outputs, tracking exactly what our build matrix is missing to satisfy criteria of conan install.
Anyway,
It would be great if conan info .. would print it in the form available in conaninfo.txt so something like: 1.Y.Z if only major version is of interest.
This possibly could be a bug submit :)
Currently (in 1.24 ) when building package and we have missing prebuilt conan will spew output like this:
cant find a .. settings: "...", "options: "...", requires: "..."
However
conan search reference ..
only outputs validoptions, settings
.requires
output is slightly off - its basically a full_requires - not sure why decision was made to print[full_requires]
in place of[requires]
Making
requires
print the original value would allow for direct matching between these two outputs, tracking exactly what our build matrix is missing to satisfy criteria ofconan install
.Scanning the codebase:
https://github.com/conan-io/conan/blame/8f5e997660bd265789f48bd26c54797f5f74067f/conans/model/info.py#L469
We can see a direct assignment requires = full_requires - and also hardcoded
semver_direct_mode
?Anyway,
It would be great if
conan info ..
would print it in the form available inconaninfo.txt
so something like:1.Y.Z
if onlymajor
version is of interest.references:
#6364
The text was updated successfully, but these errors were encountered: