Skip to content

Commit 23fdbd6

Browse files
committed
Change min python version to 3.9
1 parent ddfe525 commit 23fdbd6

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

.github/workflows/ci.yml

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

1313
strategy:
1414
matrix:
15-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
15+
python-version: ["3.9", "3.10", "3.11", "3.12"]
1616

1717
steps:
1818
- uses: actions/checkout@v3

.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.8", "3.9", "3.10", "3.11", "3.12"]
16+
python-version: ["3.9", "3.10", "3.11", "3.12"]
1717

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

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66
- This adds a new `\llm` special command
77
- eg: `\llm "Who is the largest customer based on revenue?"`
88

9+
### Internal
10+
11+
* Change min required python version to 3.9+
12+
913
## 1.13.2 - 2024-11-24
1014

1115
### Internal

pyproject.toml

Lines changed: 1 addition & 1 deletion
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.7"
6+
requires-python = ">=3.9"
77
license = { text = "BSD" }
88
authors = [{ name = "dbcli", email = "[email protected]" }]
99
urls = { "homepage" = "https://github.com/dbcli/litecli" }

0 commit comments

Comments
 (0)