C.A.M. Gerlach

Results 453 comments of C.A.M. Gerlach

Hello! After discussion with our lead maintainer @ccordoba12 , [Spyder](https://www.spyder-ide.org) ( https://github.com/spyder-ide/spyder ) would like to participate! Myself, @CAM-Gerlach , will be the contact and mentor for it. I was...

spyder-ide/spyder-docs#382 is now merged (thanks @hugovk !), fixing the translation-related issues found in our new Spanish `.po` files (that aren't checked by the Sphinx-Lint Pre-Commit hook), so re-running the failed...

NB, 3.8 is the earliest version we support (security-only) upstream, but if you're considering distros, 3.7 might be a reasonable minimum as that's what RHEL 8 is stuck on. Also,...

Indeed; Refined GitHub's automated checks apparently confirms it doesn't exist in any release tag off `main`. For context, @paulwalko expected that Rapid would catch any duplicate address nodes and ways...

You should be able to make the text completely custom if you want using the generic [`pep-banner` directive](https://github.com/python/peps/blob/202b0aa565f38fe488b7e28d1534a7899f02d170/pep_sphinx_extensions/pep_processor/parsing/pep_banner_directive.py#L12). It accepts arbitrary RST and has no pre-filled text. Wasn't sure whether...

Sorry for the lack of response, somehow missed this—the modern standard, widely used replacement is [`packaging.version.parse`](https://packaging.pypa.io/en/latest/version.html) from the official PyPA [packaging](https://packaging.pypa.io/) package.

Revisiting this ≈six months later... NB, the project currently only has a `setup.cfg`, no `setup.py`, and the build backend is set to Flit in the `pyproject.toml`, so the only way...

A `:py:deco:` role seems most reasonable to me, as it is most consistent with how other multiple roles that mark up and style objects from a single namespace differently depending...

Implementation-wise, it could be as simple as `app.add_role_to_domain(domain="py", name="deco", role=sphinx.domains.python.PyXRefRole)` if you don't need custom display behavior (e.g. prepending a `@`, or not appending `()`). If you do want that,...

Not a Nox maintainer or anything, but FYI, you can just do `Path("pyproject.toml")` rather than the unnecessary `Path.cwd() / "pyproject.toml"`, since `filename` doesn't require absolute paths (as the example indeed...