Skip to content

Commit 1354c46

Browse files
authored
chore: drop support for python 3.9 (#122)
1 parent 890f84b commit 1354c46

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/ruff.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
matrix:
1717
os: [ubuntu-latest]
18-
python: ["3.9"]
18+
python: ["3.10"]
1919
runs-on: ${{ matrix.os }}
2020
steps:
2121
- name: Checkout code

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
matrix:
1717
os: [macos-latest, ubuntu-latest, windows-latest]
18-
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
18+
python: ["3.10", "3.11", "3.12", "3.13"]
1919
runs-on: ${{ matrix.os }}
2020
steps:
2121
- name: Checkout code

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "A python package for Substrait."
44
authors = [{name = "Substrait contributors", email = "substrait@googlegroups.com"}]
55
license = {text = "Apache-2.0"}
66
readme = "README.md"
7-
requires-python = ">=3.9"
7+
requires-python = ">=3.10"
88
dependencies = ["protobuf >=3.19.1,<6"]
99
dynamic = ["version"]
1010

@@ -28,6 +28,6 @@ build-backend = "setuptools.build_meta"
2828
[tool.ruff]
2929
respect-gitignore = true
3030
# should target minimum supported version
31-
target-version = "py39"
31+
target-version = "py310"
3232
# never autoformat upstream or generated code
3333
exclude = ["third_party/", "src/substrait/gen"]

0 commit comments

Comments
 (0)