Skip to content

Commit cd45674

Browse files
committed
fix!: drop python 3.8
1 parent 2cb5647 commit cd45674

File tree

4 files changed

+6
-461
lines changed

4 files changed

+6
-461
lines changed

.github/workflows/pythonapp.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
python: [3.8, 3.9, "3.10"]
14+
python: [3.9, "3.10"]
1515

1616
env:
1717
FORCE_COLOR: 1

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def group(title: str) -> Generator[None, None, None]:
2323

2424
# TODO: "0.5.1", "0.6.1", "0.7.1", "0.8.1"
2525
# TODO: 3.11, 3.12, 3.13
26-
@nox.session(py=["3.8", "3.9", "3.10"])
26+
@nox.session(py=["3.9", "3.10"])
2727
@nox.parametrize("duckdb", ["0.9.2", "1.0.0"])
2828
@nox.parametrize("sqlalchemy", ["1.3", "1.4", "2.0.35"])
2929
def tests(session: nox.Session, duckdb: str, sqlalchemy: str) -> None:

0 commit comments

Comments
 (0)