Skip to content

Commit bfc7e8a

Browse files
committed
Drop python3.7 support
1 parent 9792b3d commit bfc7e8a

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
python-version: [ "3.7", "3.8", "3.9", "3.10","3.11" ]
16+
python-version: [ "3.8", "3.9", "3.10","3.11" ]
1717

1818
services:
1919
postgres:

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ repos:
1616
hooks:
1717
- id: pyupgrade
1818
args:
19-
- --py37-plus
19+
- --py38-plus
2020
- repo: https://github.com/charliermarsh/ruff-pre-commit
2121
rev: v0.0.277
2222
hooks:

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,7 @@ select = [
156156
"W", # pycodestyle warnings
157157
]
158158
ignore = ["E501", "B904", "B008", "D100", "D101", "D102", "D103", "D104", "D105", "D106", "D107", "D205"]
159+
target-version = "py38"
159160

160161
[tool.ruff.pydocstyle]
161162
convention = "google"

0 commit comments

Comments
 (0)