Skip to content

Commit 0c80366

Browse files
committed
chore: Update py3.7 -> py3.9
py3.7 support ended 2 years ago. So, drop support for it and up our lowest version to py3.9
1 parent 267bed5 commit 0c80366

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
python-version:
19-
- "3.7"
19+
- "3.9"
2020
- "3.12"
2121
DB:
2222
- "sqlite"

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ An auditing extension for sqlalchemy which keeps a track of the history of your
77

88
## Features
99

10-
- Supports sqlalchemy 2+ and python 3.7+
10+
- Supports sqlalchemy 2+ and python 3.9+
1111
- Tracks history for inserts, deletes, and updates
1212
- Does not store updates which don't change anything
1313
- Supports alembic migrations

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ classifiers=[
2020
]
2121

2222
[tool.poetry.dependencies]
23-
python = "^3.7"
23+
python = "^3.9"
2424

2525
SQLAlchemy = ">=2"
2626
SQLAlchemy-Utils = ">=0.30.12"
@@ -42,7 +42,7 @@ pytest-cov = "*"
4242

4343
[tool.ruff]
4444
line-length = 110
45-
target-version = 'py37'
45+
target-version = 'py39'
4646

4747
[tool.coverage.run]
4848
dynamic_context = "test_function"

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py37
2+
envlist = py39
33

44
[testenv]
55
commands = pip install -e ".[test]"

0 commit comments

Comments
 (0)