Skip to content

Commit

Permalink
fix: drop python 3.7 support
Browse files Browse the repository at this point in the history
  • Loading branch information
Mause committed Apr 8, 2024
1 parent ab36e7d commit 9acdd66
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 101 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pythonapp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python: [3.7, 3.8, 3.9, "3.10"]
python: [3.8, 3.9, "3.10"]
bleeding_edge: [false]
include:
- python: 3.9
Expand Down
99 changes: 2 additions & 97 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repository = "https://github.com/Mause/duckdb_engine"
"Changelog" = "https://github.com/Mause/duckdb_engine/releases"

[tool.poetry.dependencies]
python = ">=3.7"
python = ">=3.8"
duckdb = ">=0.4.0"
sqlalchemy = ">=1.3.22"
packaging = "^21"
Expand Down
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ requires =
tox-gh-actions
tox-poetry-installer==1.0.0b1
env_list =
py{310, 39, 38, 37}-{duckdb092, duckdb081, duckdb071, duckdb061, duckdb051, duckdb040, mypy}-sqlalchemy{20, 14, 13}
py{310, 39, 38}-{duckdb092, duckdb081, duckdb071, duckdb061, duckdb051, duckdb040, mypy}-sqlalchemy{20, 14, 13}
duckdb_master

[testenv]
Expand Down Expand Up @@ -37,7 +37,6 @@ commands =

[gh-actions]
python =
3.7: py37-{duckdb040,duckdb051,duckdb061,duckdb071,duckdb081}-sqlalchemy{13,14,20}
3.8: py38-{duckdb040,duckdb051,duckdb061,duckdb071,duckdb081,mypy}-sqlalchemy{13,14,20}
3.9: py39-{duckdb040,duckdb051,duckdb061,duckdb071,duckdb081}-sqlalchemy{13,14,20}
3.10: py310-{duckdb040,duckdb051,duckdb061,duckdb071,duckdb081,duckdb092}-sqlalchemy{13,14,20}

0 comments on commit 9acdd66

Please sign in to comment.