Skip to content

Commit ad43f0c

Browse files
authored
chore: drop support for python 3.9 (#460)
Removes support for Python 3.9 from the project. - Updates pyproject.toml in all packages to target Python 3.10+ for Black. - Removes Python 3.9 specific Renovate rules.
1 parent b018cc7 commit ad43f0c

File tree

4 files changed

+3
-10
lines changed

4 files changed

+3
-10
lines changed

.github/renovate.json5

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,6 @@
6363
'.kokoro/**',
6464
],
6565
},
66-
{
67-
"description": "Disable pillow updates for python <=3.9 in pyproject.toml",
68-
"matchFileNames": ["**/pyproject.toml"],
69-
"matchPackageNames": ["Pillow"],
70-
"matchCurrentValue": "==11.3.0",
71-
"enabled": false
72-
}
7366
],
7467
regexManagers: [
7568
{

packages/toolbox-core/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ requires = ["setuptools"]
6060
build-backend = "setuptools.build_meta"
6161

6262
[tool.black]
63-
target-version = ['py39']
63+
target-version = ['py310']
6464

6565
[tool.isort]
6666
profile = "black"

packages/toolbox-langchain/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ requires = ["setuptools"]
5959
build-backend = "setuptools.build_meta"
6060

6161
[tool.black]
62-
target-version = ['py39']
62+
target-version = ['py310']
6363

6464
[tool.isort]
6565
profile = "black"

packages/toolbox-llamaindex/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ requires = ["setuptools"]
5959
build-backend = "setuptools.build_meta"
6060

6161
[tool.black]
62-
target-version = ['py39']
62+
target-version = ['py310']
6363

6464
[tool.isort]
6565
profile = "black"

0 commit comments

Comments
 (0)