From 9c9f8737e4184fe4e6c57e054d53cede1e9c3033 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 29 Dec 2025 17:47:35 +0000 Subject: [PATCH 1/2] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/crate-ci/typos: v1.40.1 → v1](https://github.com/crate-ci/typos/compare/v1.40.1...v1) --- .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 7416d5e..811a7a6 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -39,7 +39,7 @@ repos: ] args: [--wrap, "88"] - repo: https://github.com/crate-ci/typos - rev: v1.40.1 + rev: v1 hooks: - id: typos - repo: meta From d9baea9f8a63c0c48018e876d242b0075352c620 Mon Sep 17 00:00:00 2001 From: Tobias Raabe Date: Mon, 29 Dec 2025 20:21:00 +0100 Subject: [PATCH 2/2] fix ty import for version --- src/pytask_r/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pytask_r/__init__.py b/src/pytask_r/__init__.py index 8c31e12..cdadbee 100644 --- a/src/pytask_r/__init__.py +++ b/src/pytask_r/__init__.py @@ -3,7 +3,7 @@ from __future__ import annotations try: - from ._version import version as __version__ + from ._version import version as __version__ # ty: ignore[unresolved-import] except ImportError: # broken installation, we don't even try unknown only works because we do poor mans # version compare