From 7157986f6644bf05445873872486c2000cb930b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Brigitta=20Sip=C5=91cz?= Date: Tue, 8 Apr 2025 00:05:34 -0700 Subject: [PATCH 1/3] MAINT: switch to maintained prettier fork --- .pre-commit-config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 312016bc..f3fd2879 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -30,8 +30,8 @@ repos: args: ["--fix", "--show-fixes"] - id: ruff-format - - repo: https://github.com/pre-commit/mirrors-prettier - rev: v4.0.0-alpha.8 + - repo: https://github.com/rbubley/mirrors-prettier + rev: 787fb9f542b140ba0b2aced38e6a3e68021647a3 # frozen: v3.5.3 hooks: - id: prettier types_or: [scss, javascript] From 18b89c97290c44a5599d0e6bac546eabf61cb188 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Brigitta=20Sip=C5=91cz?= Date: Sun, 18 Jan 2026 15:20:33 -0800 Subject: [PATCH 2/3] Update version --- .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 f3fd2879..28865a90 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -31,7 +31,7 @@ repos: - id: ruff-format - repo: https://github.com/rbubley/mirrors-prettier - rev: 787fb9f542b140ba0b2aced38e6a3e68021647a3 # frozen: v3.5.3 + rev: 309e9b0af1bbf98f1f6cd8e2b283b68cf87814e7 # frozen: v3.8.0 hooks: - id: prettier types_or: [scss, javascript] From e63dff564c81000e797da2543ec03dde28553423 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Brigitta=20Sip=C5=91cz?= Date: Fri, 30 Jan 2026 15:04:15 -0800 Subject: [PATCH 3/3] CI: kick deprecations down the line for now --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 9e7dcb00..2be4bb04 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,6 +27,8 @@ filterwarnings = [ '''ignore:'sphinx.util.import_object' is deprecated.:PendingDeprecationWarning''', 'ignore:Parsing dates involving a day of month without a year specified is ambiguious:DeprecationWarning', 'ignore:Argument "parser_name" will be removed in Docutils 2.0.:PendingDeprecationWarning', + # RemovedInSphinx11Warning triggered in sphinx -- ultimately should be fixed + "ignore:'sphinx_book_theme._transforms.HandleFootnoteTransform.app' is deprecated.:PendingDeprecationWarning", ] [project]