Skip to content

Commit 948396f

Browse files
committed
chore: remove Python 3.9 from our build infrastructure
Fixes #3886 Signed-off-by: R. Tyler Croy <[email protected]>
1 parent 89a21c0 commit 948396f

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/python_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Setup Environment
2525
uses: ./.github/actions/setup-env
2626
with:
27-
python-version: 3.9
27+
python-version: '3.10'
2828

2929
- name: Check Python
3030
run: |

python/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "deltalake-python"
3-
version = "1.2.1"
3+
version = "1.3.0"
44
authors = [
55
"Qingping Hou <[email protected]>",
66
"Will Jones <[email protected]>",
@@ -71,7 +71,7 @@ jemallocator = { version = "0.5", features = ["disable_initial_exec_tls"] }
7171

7272
[dependencies.pyo3]
7373
version = "0.25.1"
74-
features = ["extension-module", "abi3", "abi3-py39"]
74+
features = ["extension-module", "abi3", "abi3-py310"]
7575

7676
[dependencies.deltalake]
7777
path = "../crates/deltalake"

python/pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,15 @@ name = "deltalake"
77
description = "Native Delta Lake Python binding based on delta-rs with Pandas integration"
88
readme = "README.md"
99
license = "Apache-2.0"
10-
requires-python = ">=3.9"
10+
requires-python = ">=3.10"
1111
keywords = ["deltalake", "delta", "datalake", "pandas", "arrow"]
1212
classifiers = [
1313
"License :: OSI Approved :: Apache Software License",
14-
"Programming Language :: Python :: 3.9",
1514
"Programming Language :: Python :: 3.10",
1615
"Programming Language :: Python :: 3.11",
1716
"Programming Language :: Python :: 3.12",
17+
"Programming Language :: Python :: 3.13",
18+
"Programming Language :: Python :: 3.14",
1819
]
1920
dynamic = ["version"]
2021
dependencies = ["arro3-core>=0.5.0", "deprecated>=1.2.18"]

0 commit comments

Comments
 (0)