Skip to content

Commit e182b1c

Browse files
committed
pin pydantic and prevent renovate from upgrading it
1 parent 674a061 commit e182b1c

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

pyproject.toml

Lines changed: 2 additions & 1 deletion
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

Lines changed: 6 additions & 0 deletions
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)