Skip to content

Commit ab36105

Browse files
authored
Merge branch 'main' into fix/avoid-deleting-separators
2 parents bd78b53 + bb2c4fe commit ab36105

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ ci:
66
default_stages: [pre-commit, pre-push]
77
repos:
88
- repo: https://github.com/astral-sh/ruff-pre-commit
9-
rev: v0.9.1
9+
rev: v0.9.4
1010
hooks:
1111
- id: ruff
1212
args: ["--fix", "--show-fixes"]
1313
- id: ruff-format
1414
- repo: https://github.com/codespell-project/codespell
15-
rev: v2.3.0
15+
rev: v2.4.1
1616
hooks:
1717
- id: codespell
1818
args: ["-L", "fo,ihs,kake,te", "-S", "fixture"]
@@ -37,7 +37,7 @@ repos:
3737
# Tests
3838
- pytest
3939
- repo: https://github.com/scientific-python/cookie
40-
rev: 2024.08.19
40+
rev: 2025.01.22
4141
hooks:
4242
- id: sp-repo-review
4343
- repo: https://github.com/pre-commit/pygrep-hooks
@@ -50,6 +50,6 @@ repos:
5050
hooks:
5151
- id: numpydoc-validation
5252
- repo: https://github.com/twisted/towncrier
53-
rev: 23.11.0
53+
rev: 24.8.0
5454
hooks:
5555
- id: towncrier-check

changes/2796.chore.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
The docs environment is now built with ``astroid`` pinned to a version less than 4. This allows the docs to build in CI.

pyproject.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ docs = [
103103
'numcodecs[msgpack]',
104104
'rich',
105105
's3fs',
106+
'astroid<4'
106107
]
107108

108109

@@ -427,3 +428,6 @@ directory = 'changes'
427428
filename = "docs/release-notes.rst"
428429
underlines = ["-", "~", "^"]
429430
issue_format = ":issue:`{issue}`"
431+
432+
[tool.codespell]
433+
ignore-words-list = "astroid"

0 commit comments

Comments
 (0)