Skip to content

Commit 92015c0

Browse files
authored
chore: Update renovate config to disable updates for pillow for py3.9 (#400)
1 parent 80bce10 commit 92015c0

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

.github/renovate.json5

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,12 @@
4747
'.kokoro/**',
4848
],
4949
},
50+
{
51+
"description": "Disable pillow updates for python <=3.9 in pyproject.toml",
52+
"matchFileNames": ["**/pyproject.toml"],
53+
"matchPackageNames": ["Pillow"],
54+
"matchCurrentValue": "==11.3.0",
55+
"enabled": false
56+
}
5057
],
5158
}

packages/toolbox-langchain/pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ test = [
5050
"pytest-asyncio==1.2.0",
5151
"pytest==8.4.2",
5252
"pytest-cov==7.0.0",
53-
"Pillow==11.3.0",
53+
"Pillow==11.3.0; python_version == '3.9'",
54+
"Pillow==12.0.0; python_version >= '3.10'",
5455
"google-cloud-secret-manager==2.24.0",
5556
"google-cloud-storage==3.4.0",
5657
]

packages/toolbox-llamaindex/pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ test = [
5050
"pytest-asyncio==1.2.0",
5151
"pytest==8.4.2",
5252
"pytest-cov==7.0.0",
53-
"Pillow==11.3.0",
53+
"Pillow==11.3.0; python_version == '3.9'",
54+
"Pillow==12.0.0; python_version >= '3.10'",
5455
"google-cloud-secret-manager==2.24.0",
5556
"google-cloud-storage==3.4.0",
5657
]

0 commit comments

Comments
 (0)