From 01dce858a23894e3ccca7dd710e0ac616813072b Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 17:58:48 +0000 Subject: [PATCH 1/4] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/biomejs/pre-commit: v2.3.15 → v2.4.4](https://github.com/biomejs/pre-commit/compare/v2.3.15...v2.4.4) - [github.com/tox-dev/pyproject-fmt: v2.16.0 → v2.16.2](https://github.com/tox-dev/pyproject-fmt/compare/v2.16.0...v2.16.2) - [github.com/astral-sh/ruff-pre-commit: v0.15.1 → v0.15.4](https://github.com/astral-sh/ruff-pre-commit/compare/v0.15.1...v0.15.4) --- .pre-commit-config.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 5e500f9f..500274ab 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,17 +1,17 @@ repos: # Hooks that are run everywhere - repo: https://github.com/biomejs/pre-commit - rev: v2.3.15 + rev: v2.4.4 hooks: - id: biome-format # Hooks that are run for scripts - repo: https://github.com/tox-dev/pyproject-fmt - rev: v2.16.0 + rev: v2.16.2 hooks: - id: pyproject-fmt files: ^scripts/pyproject\.toml$ - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.15.1 + rev: v0.15.4 hooks: - id: ruff-check args: [--fix, --exit-non-zero-on-fix] From b7471bbed9d2e885ea7b612f5e3de3fada5a1c0b Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 17:59:05 +0000 Subject: [PATCH 2/4] Apply automatic changes --- {{cookiecutter.project_name}}/.pre-commit-config.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/{{cookiecutter.project_name}}/.pre-commit-config.yaml b/{{cookiecutter.project_name}}/.pre-commit-config.yaml index ce77fe6d..8e1715e4 100644 --- a/{{cookiecutter.project_name}}/.pre-commit-config.yaml +++ b/{{cookiecutter.project_name}}/.pre-commit-config.yaml @@ -7,16 +7,16 @@ default_stages: minimum_pre_commit_version: 2.16.0 repos: - repo: https://github.com/biomejs/pre-commit - rev: v2.3.15 + rev: v2.4.4 hooks: - id: biome-format exclude: ^\.cruft\.json$ # inconsistent indentation with cruft - file never to be modified manually. - repo: https://github.com/tox-dev/pyproject-fmt - rev: v2.16.0 + rev: v2.16.2 hooks: - id: pyproject-fmt - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.15.1 + rev: v0.15.4 hooks: - id: ruff-check types_or: [python, pyi, jupyter] From a02a9051b8048e080ed8fe1ae61640ad560d9144 Mon Sep 17 00:00:00 2001 From: "Philipp A." Date: Tue, 3 Mar 2026 09:22:25 +0100 Subject: [PATCH 3/4] fix warning --- scripts/pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/pyproject.toml b/scripts/pyproject.toml index 57c3ef3b..125b38f6 100644 --- a/scripts/pyproject.toml +++ b/scripts/pyproject.toml @@ -99,4 +99,6 @@ filterwarnings = [ "error", # https://github.com/man-group/pytest-plugins/issues/224 "ignore::DeprecationWarning:pytest_shutil", + # https://github.com/psf/requests/issues/7219 + "ignore::requests.exceptions.RequestsDependencyWarning", ] From 4ac3d076cdd9c9f2d0b7d0bc388d01b3ea1369cd Mon Sep 17 00:00:00 2001 From: "Philipp A." Date: Tue, 3 Mar 2026 09:25:27 +0100 Subject: [PATCH 4/4] hm --- scripts/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/pyproject.toml b/scripts/pyproject.toml index 125b38f6..d4dba31a 100644 --- a/scripts/pyproject.toml +++ b/scripts/pyproject.toml @@ -100,5 +100,5 @@ filterwarnings = [ # https://github.com/man-group/pytest-plugins/issues/224 "ignore::DeprecationWarning:pytest_shutil", # https://github.com/psf/requests/issues/7219 - "ignore::requests.exceptions.RequestsDependencyWarning", + "ignore:urllib3.*or chardet.*doesn't match a supported version", ]