Skip to content

Commit

Permalink
chore: drop python 3.8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
ion-elgreco authored and rtyler committed Oct 7, 2024
1 parent 5a5f4e1 commit bac3306
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: make check-rust

test-minimal:
name: Python Build (Python 3.8 PyArrow 16.0.0)
name: Python Build (Python 3.9 PyArrow 16.0.0)
runs-on: ubuntu-latest
env:
RUSTFLAGS: "-C debuginfo=line-tables-only"
Expand All @@ -43,7 +43,7 @@ jobs:
- name: Setup Environment
uses: ./.github/actions/setup-env
with:
python-version: 3.8
python-version: 3.9

- name: Build and install deltalake
run: |
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:

strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
Expand Down
3 changes: 1 addition & 2 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,10 @@ name = "deltalake"
description = "Native Delta Lake Python binding based on delta-rs with Pandas integration"
readme = "README.md"
license = {file = "licenses/deltalake_license.txt"}
requires-python = ">=3.8"
requires-python = ">=3.9"
keywords = ["deltalake", "delta", "datalake", "pandas", "arrow"]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down

0 comments on commit bac3306

Please sign in to comment.