Skip to content

Commit b2ccb96

Browse files
chore: pin ruff to >=0.16,<0.17 in all dev extras
An unpinned ruff means CI silently adopts each new minor's lint and formatting behavior mid-development (0.16.0 started formatting Markdown code blocks, which is what forced the docs reformat on this branch). Pinning to the current minor keeps patch fixes and makes format checks reproducible; bumping the minor becomes a deliberate change.
1 parent f0442bd commit b2ccb96

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

authplane-fastmcp/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ dev = [
4747
"respx>=0.21",
4848
"cryptography>=42",
4949
"coverage>=7",
50-
"ruff>=0.8",
50+
"ruff>=0.16,<0.17",
5151
]
5252

5353
[tool.pytest.ini_options]

authplane-mcp/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ dev = [
4646
"respx>=0.21",
4747
"cryptography>=42",
4848
"coverage>=7",
49-
"ruff>=0.8",
49+
"ruff>=0.16,<0.17",
5050
]
5151

5252
[tool.pytest.ini_options]

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ dev = [
3838
"cryptography>=42",
3939
"coverage>=7",
4040
"pyright>=1.1",
41-
"ruff>=0.8",
41+
"ruff>=0.16,<0.17",
4242
]
4343

4444
[project.urls]

0 commit comments

Comments
 (0)