Skip to content

Commit ed4bc6c

Browse files
committed
feat: bump minimum python version to 3.9 (3.8 is EOL)
1 parent ed41c07 commit ed4bc6c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Python
1717
uses: actions/setup-python@v5
1818
with:
19-
python-version: "3.8"
19+
python-version: "3.9"
2020

2121
- name: Create venv for maturin develop
2222
run: python -m venv .venv

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ name = "fastquadtree"
88
dynamic = ["version"]
99
description = "Rust-accelerated quadtree for Python with fast inserts, range queries, and k-NN search."
1010
readme = { file = "README.md", content-type = "text/markdown" }
11-
requires-python = ">=3.8"
11+
requires-python = ">=3.9"
1212
dependencies = [] # No runtime dependencies
1313
license = { file = "LICENSE" }
1414
authors = [{ name = "Ethan Anderson" }]

0 commit comments

Comments
 (0)