Skip to content

Commit 52932c5

Browse files
Deprecate Python 3.7. (#59)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 90cac91 commit 52932c5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ repos:
2929
rev: v3.11.0
3030
hooks:
3131
- id: reorder-python-imports
32-
args: [--py37-plus, --add-import, 'from __future__ import annotations']
32+
args: [--py38-plus, --add-import, 'from __future__ import annotations']
3333
- repo: https://github.com/asottile/setup-cfg-fmt
3434
rev: v2.4.0
3535
hooks:

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ channels:
55
- nodefaults
66

77
dependencies:
8-
- python >= 3.7
8+
- python >= 3.8
99
- pip
1010
- setuptools_scm
1111
- toml

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ ignore_errors = true
2525

2626

2727
[tool.ruff]
28-
target-version = "py37"
28+
target-version = "py38"
2929
select = ["ALL"]
3030
fix = true
3131
extend-ignore = [

0 commit comments

Comments
 (0)