Claudio Jolowicz

Results 186 comments of Claudio Jolowicz

Thanks for the example and the analysis, that's helpful! So I think the next step would be to add an `unpinned-tests` session to the Noxfile. Would you be interested in...

Hm I wasn't aware of this GA limitation. We could: - use a cronjob on main - ensure the check never fails (`continue-on-error` on the step level) - ...? I'd...

Unfortunately, all uses of the version number are contained within markup. For example, code blocks showing how to install the latest version cannot reference this substitution.

Unfortunately we had some overlap here. Let's handle the linkcheck related changes separately, after your PR on the instance. Happy to continue with the rest here if you like.

I like this idea! Some thoughts/suggestions: - We can work on a PR in the [instance repository](https://github.com/cjolowicz/cookiecutter-hypermodern-python-instance). That'll allow us to test the CI as well. - The User Guide...

Worth noting that broken links in docstrings would only be detected by the cronjob. But I'd rather have that than every Dependabot PR failing because some link wasn't reachable. As...

- https://github.com/ewjoachim/sphinx-github-changelog

Thanks! For reference, ```editorconfig # https://editorconfig.org root = true [*] charset = utf-8 end_of_line = lf indent_style = space indent_size = 2 trim_trailing_whitespace = true insert_final_newline = true [*.py] indent_size...

Should we cater to any of these special cases? 1. There are other file extensions with Python(-like) code, most notably *.pyi (type stubs), *.pyw (scripts on Windows without an attached...

FWIW, here's a version implementing 1 to 3 from above: ```editorconfig # https://editorconfig.org root = true [*] charset = utf-8 end_of_line = lf indent_style = space indent_size = 2 trim_trailing_whitespace...