Skip to content

Commit 5d891fe

Browse files
committed
Set minimum python version to 3.10 since 3.9 is end of life
1 parent 694a5d8 commit 5d891fe

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ jobs:
3333
fail-fast: false
3434
matrix:
3535
python-version:
36-
- "3.9"
3736
- "3.10"
3837
- "3.11"
3938
- "3.12"
4039
- "3.13"
40+
- "3.14"
4141
toolchain:
4242
- "stable"
4343

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ name = "datafusion"
2424
description = "Build and run queries against data"
2525
readme = "README.md"
2626
license = { file = "LICENSE.txt" }
27-
requires-python = ">=3.9"
27+
requires-python = ">=3.10"
2828
keywords = ["datafusion", "dataframe", "rust", "query-engine"]
2929
classifiers = [
3030
"Development Status :: 2 - Pre-Alpha",
@@ -35,11 +35,11 @@ classifiers = [
3535
"Operating System :: Microsoft :: Windows",
3636
"Operating System :: POSIX :: Linux",
3737
"Programming Language :: Python :: 3",
38-
"Programming Language :: Python :: 3.9",
3938
"Programming Language :: Python :: 3.10",
4039
"Programming Language :: Python :: 3.11",
4140
"Programming Language :: Python :: 3.12",
4241
"Programming Language :: Python :: 3.13",
42+
"Programming Language :: Python :: 3.14",
4343
"Programming Language :: Python",
4444
"Programming Language :: Rust",
4545
]

0 commit comments

Comments
 (0)