Ivan Ogasawara
Ivan Ogasawara
Hi @travi, I’m reaching out to ask if you have any updates regarding the use of SLSA level 3 provenance with semantic-release. I must admit, I'm not very familiar with...
thanks for the response. my knowledge about this topic is zero, but if I find anyone who could help, I will point them to this issue. thanks!
thanks for working on that!
thanks for your response @jendrikseipp ! for some reason it is not working: ```bash $ vulture --min-confidence 80 --ignore-decorators @abc.abstractmethod src/arxir/builders/base.py src/arxir/builders/base.py:59: unused variable 'output_file' (100% confidence) ``` ```vim 58...
not sure if I understood i correctly, but my case is very simple, abc.abstractmethod defines a method that will be overridden, that means that that function doesn't need to have...
hi everyone. just a friendly ping here to check if there is any update about this topic
thanks for the information @eli-schwartz !
mmm probably related to `-j` parameter ... maybe would be good to add a metadata to prevent warning about parallel read/write ref: - https://github.com/sloria/sphinx-issues/issues/4 - https://github.com/sloria/sphinx-issues/commit/3731a6e5bb3257fda874ca2ef8bd902ff8f8e13e
does any one know a way to do that?
I manage to have this working with this: ```python def setup(f: Callable): def _f(self, some_arg: str): self.some_function_from_my_test_class() return f(self, some_arg) _f.__name__ = f.__name__ _f.__annotations__ = f.__annotations__ _f.__docs__ = getattr(f, "__docs__",...