James
James
Yes, it was not sufficiently protected to avoid writing on it. The truth is that in general we don't do an overly "defensive" programming style, trying to keep the codebase...
Moved to "docs" repo
Hi @db4 This is expected. The current solution is using a hook (check the one we are using in conan-center: https://github.com/conan-io/hooks/blob/a52cef5ffed0ff11bed757c42e66a95f792572b8/hooks/conan-center.py#L762) that implement exactly that.
> Didn't know that, thanks. Maybe this should be the core functionality in Conan 2.0? Yes, totally, this is why I assigned it as "look into" for next 2.0.0-alpha4, that...
We have been discussing and thinking about it: - It seems the conadata.yml structure is quite arbitrary, having multiple "version" keys (one under "sources", another under "patches"). - There is...
Good point. Please @uilianries do a PR with: - Remove https://docs.conan.io/en/latest/uploading_packages/bintray/uploading_bintray.html - Update the info in https://docs.conan.io/en/latest/uploading_packages/remotes.html, removing "Bintray Community Repositories", and adding the FreeTier as an option in "private...
This is because ``tools`` is a package, not a module, and it doesn't automatically export all of its subpackages. It is not designed to be imported and used that way...
It might eventually work for some things, not sure if the class/function is the difference, but it is not documented usage. In your PR to conan-center-index, it works by luck,...
Moving this to the docs, to explicitly clarify this.
I think there is an inconsistency in the docs there. Please note that the example reads: ```python if platform.system() == "Windows": ``` And not using ``self.settings`` at all. The core...