Skip to content

Commit 5a8a0f5

Browse files
committed
pin pydantic and prevent renovate from upgrading it
1 parent 66ebd3f commit 5a8a0f5

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ dependencies = [
1616
"isort>=5.12,<6.1",
1717
"libcst>=1.7,<1.8",
1818
"packaging>=23.2,<25.0",
19-
"pydantic~=2.11.3",
19+
# do not update pydantic due to inconsistent test failures
20+
"pydantic~=2.10.6",
2021
"pylint>=3.3,<3.4",
2122
"python-json-logger~=3.3.0",
2223
"PyYAML~=6.0.0",

renovate.json

+6
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,11 @@
33
"extends": [
44
"config:recommended",
55
"group:allNonMajor"
6+
],
7+
"packageRules": [
8+
{
9+
"matchPackageNames": ["pydantic"],
10+
"enabled": false
11+
}
612
]
713
}

0 commit comments

Comments
 (0)