From 5b277015303ad4d1427cfff16539c6369e4387cc Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Thu, 18 Jun 2026 20:12:51 +0200 Subject: [PATCH 1/2] Fix CI error raise ExtensionError( sphinx.errors.ExtensionError: Could not import extension numpydoc (exception: No module named 'numpydoc') --- .readthedocs.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 44e97335..11b56f23 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -23,3 +23,4 @@ python: - msgpack - zfpy - crc32c + - numpydoc From df50633e01a6683ba0c1b202d50c6859a86bb8f2 Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Sun, 12 Apr 2026 10:27:35 +0200 Subject: [PATCH 2/2] Leaner `tool.ruff.lint.ignore` --- pyproject.toml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ce472c98..78e3cd98 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -193,18 +193,13 @@ extend-select = [ "UP", ] ignore = [ - "FURB101", - "FURB103", - "PT001", "PT011", - "PT012", "PT031", "RET505", "RET506", "SIM108", "TRY003", "TRY301", - "UP007", # https://docs.astral.sh/ruff/formatter/#conflicting-lint-rules "W191", "E111",