Skip to content

Commit 6709ad8

Browse files
committed
Drop Python 3.9 from test and tooling targets
1 parent 8b6ebc6 commit 6709ad8

5 files changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
17+
python-version: ["3.10", "3.11", "3.12", "3.13"]
1818

1919
steps:
2020
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
16+
python-version: ["3.10", "3.11", "3.12", "3.13"]
1717

1818
steps:
1919
- uses: actions/checkout@v4

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
### Internal
44

55
- Add a GitHub Actions workflow to run Codex review on pull requests.
6+
- Drop Python 3.9 from test matrices and tooling targets.
67

78
## 1.19.0 - 2026-01-30
89

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "litecli"
33
dynamic = ["version"]
44
description = "CLI for SQLite Databases with auto-completion and syntax highlighting."
55
readme = "README.md"
6-
requires-python = ">=3.9"
6+
requires-python = ">=3.10"
77
license = { text = "BSD" }
88
authors = [{ name = "dbcli", email = "litecli-users@googlegroups.com" }]
99
urls = { "homepage" = "https://github.com/dbcli/litecli" }
@@ -62,7 +62,7 @@ litecli = ["liteclirc", "AUTHORS"]
6262
line-length = 140
6363

6464
[tool.ty.environment]
65-
python-version = "3.9"
65+
python-version = "3.10"
6666
root = [".", "litecli", "litecli/packages", "litecli/packages/special"]
6767

6868

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py,style,sqlean
2+
envlist = py310,py311,py312,py313,style,sqlean
33

44
[testenv]
55
deps = uv

0 commit comments

Comments
 (0)