Cody
Cody
@rarkins I attempted to recreate this on GitHub using public submodules, but it doesn't seem to be an issue there. So it is either an issue with bitbucket or the...
@rarkins Additional data point, it doesn't happen in my private repository if I don't group digests with other minor and patch versions
> * As git-js contributors mentioned, git-js is capable of using `.netrc` file implicitly, I've actually tried that (mount my `.netrc` into `renovate` docker container) and it worked like a...
@gonchik The issue is resolved if you replace [this line](https://github.com/atlassian-api/atlassian-python-api/blob/3.28.1/atlassian/rest_client.py#L400) with: ```python j.get("errorMessages", list()) + [k.get("message", "") for k in j.get("errors", dict())] ```
That could also work, but a single option might make it easier for simple uses
@uilianries I'm not sure it will tell you much, but here: ``` [HOOK - recipe_linter.py] pre_export(): Lint recipe '/path/conanfile.py' [HOOK - recipe_linter.py] pre_export(): recipes/conanfile.py:36:4: C0116: Missing function or method docstring...
@uilianries Here's a simplified version ```python import os from conans import ConanFile class Conan(ConanFile): name = "conan" version = "1.0" python_requires = "base/1.0@user/channel" python_requires_extend = "base.BaseConan" def _base_conan(self): return self.python_requires["base"].module.BaseConan...