Skip to content

Commit f96147b

Browse files
authored
Merge pull request #196 from pre-commit/py39
py39+
2 parents 4fb66d5 + 82bebec commit f96147b

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
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.6.0
1212
with:
13-
env: '["py38", "py39"]'
13+
env: '["py39", "py310"]'

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ repos:
1717
rev: v3.12.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.15.0
2727
hooks:
2828
- id: pyupgrade
29-
args: [--py38-plus]
29+
args: [--py39-plus]
3030
- repo: https://github.com/hhatto/autopep8
3131
rev: v2.0.4
3232
hooks:

pre_commit_mirror_maker/main.py

Lines changed: 1 addition & 1 deletion
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 pre_commit_mirror_maker.make_repo import LIST_VERSIONS
88
from pre_commit_mirror_maker.make_repo import make_repo

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ classifiers =
2121
packages = find:
2222
install_requires =
2323
packaging
24-
python_requires = >=3.8
24+
python_requires = >=3.9
2525

2626
[options.packages.find]
2727
exclude =

0 commit comments

Comments
 (0)