Skip to content

Commit a860eb3

Browse files
committed
Deprecate Python 3.7.
1 parent 91e6c7e commit a860eb3

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
fail-fast: false
2828
matrix:
2929
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
30-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
30+
python-version: ['3.8', '3.9', '3.10', '3.11']
3131

3232
steps:
3333
- uses: actions/checkout@v4

.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)