Skip to content

Commit 3fe9f0a

Browse files
authoredOct 11, 2024
Merge pull request #481 from pre-commit/all-repos_autofix_all-repos-manual
py39+
2 parents 54a4479 + dd8ebb1 commit 3fe9f0a

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed
 

‎.github/workflows/main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ on:
88

99
jobs:
1010
main:
11-
uses: asottile/workflows/.github/workflows/tox.yml@v1.5.0
11+
uses: asottile/workflows/.github/workflows/tox.yml@v1.7.0
1212
with:
13-
env: '["py38", "py39", "py310", "py311"]'
13+
env: '["py39", "py310", "py311", "py312"]'

‎.pre-commit-config.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ repos:
1717
rev: v3.13.0
1818
hooks:
1919
- id: reorder-python-imports
20-
args: [--py38-plus, --add-import, 'from __future__ import annotations']
20+
args: [--py39-plus, --add-import, 'from __future__ import annotations']
2121
- repo: https://github.com/asottile/add-trailing-comma
2222
rev: v3.1.0
2323
hooks:
@@ -26,7 +26,7 @@ repos:
2626
rev: v3.17.0
2727
hooks:
2828
- id: pyupgrade
29-
args: [--py38-plus]
29+
args: [--py39-plus]
3030
- repo: https://github.com/hhatto/autopep8
3131
rev: v2.3.1
3232
hooks:

‎identify/cli.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import argparse
44
import json
5-
from typing import Sequence
5+
from collections.abc import Sequence
66

77
from identify import identify
88

‎setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ classifiers =
1818

1919
[options]
2020
packages = find:
21-
python_requires = >=3.8
21+
python_requires = >=3.9
2222

2323
[options.packages.find]
2424
exclude =

0 commit comments

Comments
 (0)