From 7fd9996f4a52b0f0099b6deedb94216be1d16449 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 29 Jul 2024 18:03:10 +0000 Subject: [PATCH 1/3] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/astral-sh/ruff-pre-commit: v0.5.1 → v0.5.5](https://github.com/astral-sh/ruff-pre-commit/compare/v0.5.1...v0.5.5) --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index b5329aff..5889d419 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -6,7 +6,7 @@ repos: - id: prettier # Hooks that are run for scripts - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.5.1 + rev: v0.5.5 hooks: - id: ruff args: [--fix, --exit-non-zero-on-fix] From 01e5e09e633b1fcad19b343b948d5e8304e6d2c6 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" Date: Mon, 29 Jul 2024 18:03:26 +0000 Subject: [PATCH 2/3] Apply automatic changes --- {{cookiecutter.project_name}}/.pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_name}}/.pre-commit-config.yaml b/{{cookiecutter.project_name}}/.pre-commit-config.yaml index d943e03f..5f97330f 100644 --- a/{{cookiecutter.project_name}}/.pre-commit-config.yaml +++ b/{{cookiecutter.project_name}}/.pre-commit-config.yaml @@ -11,7 +11,7 @@ repos: hooks: - id: prettier - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.5.1 + rev: v0.5.5 hooks: - id: ruff types_or: [python, pyi, jupyter] From bfda0e0601bc3ae77ab22500b9fccf2fd02ad13d Mon Sep 17 00:00:00 2001 From: "Philipp A." Date: Tue, 30 Jul 2024 08:57:52 +0200 Subject: [PATCH 3/3] =?UTF-8?q?fullname=E2=86=92name?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../docs/_templates/autosummary/class.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/{{cookiecutter.project_name}}/docs/_templates/autosummary/class.rst b/{{cookiecutter.project_name}}/docs/_templates/autosummary/class.rst index e4665dfc..ccdae8c0 100644 --- a/{{cookiecutter.project_name}}/docs/_templates/autosummary/class.rst +++ b/{{cookiecutter.project_name}}/docs/_templates/autosummary/class.rst @@ -13,7 +13,7 @@ Attributes table .. autosummary:: {% for item in attributes %} - ~{{ fullname }}.{{ item }} + ~{{ name }}.{{ item }} {%- endfor %} {% endif %} {% endblock %} @@ -26,7 +26,7 @@ Methods table .. autosummary:: {% for item in methods %} {%- if item != '__init__' %} - ~{{ fullname }}.{{ item }} + ~{{ name }}.{{ item }} {%- endif -%} {%- endfor %} {% endif %}