Skip to content
This repository was archived by the owner on Jan 20, 2025. It is now read-only.

Commit eb7dd32

Browse files
authored
Merge pull request #131 from asottile/all-repos_autofix_py38-plus
py38-plus
2 parents 6c64a7d + 9f1b2a3 commit eb7dd32

File tree

4 files changed

+11
-12
lines changed

4 files changed

+11
-12
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ on:
88

99
jobs:
1010
main-macos:
11-
uses: asottile/workflows/.github/workflows/tox.yml@v1.2.0
11+
uses: asottile/workflows/.github/workflows/tox.yml@v1.5.0
1212
with:
13-
env: '["py37"]'
13+
env: '["py38"]'
1414
os: macos-latest
1515
wheel-tags: true
1616
main-linux:
17-
uses: asottile/workflows/.github/workflows/tox.yml@v1.2.0
17+
uses: asottile/workflows/.github/workflows/tox.yml@v1.5.0
1818
with:
19-
env: '["py37", "py38", "py39"]'
19+
env: '["py38", "py39", "py310"]'
2020
os: ubuntu-latest

.pre-commit-config.yaml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,24 +10,23 @@ repos:
1010
- id: name-tests-test
1111
- id: requirements-txt-fixer
1212
- repo: https://github.com/asottile/setup-cfg-fmt
13-
rev: v2.3.0
13+
rev: v2.4.0
1414
hooks:
1515
- id: setup-cfg-fmt
1616
- repo: https://github.com/asottile/reorder-python-imports
1717
rev: v3.10.0
1818
hooks:
1919
- id: reorder-python-imports
20-
args: [--py37-plus, --add-import, 'from __future__ import annotations']
20+
args: [--py38-plus, --add-import, 'from __future__ import annotations']
2121
- repo: https://github.com/asottile/add-trailing-comma
22-
rev: v2.5.1
22+
rev: v3.0.0
2323
hooks:
2424
- id: add-trailing-comma
25-
args: [--py36-plus]
2625
- repo: https://github.com/asottile/pyupgrade
27-
rev: v3.7.0
26+
rev: v3.8.0
2827
hooks:
2928
- id: pyupgrade
30-
args: [--py37-plus]
29+
args: [--py38-plus]
3130
- repo: https://github.com/pre-commit/mirrors-autopep8
3231
rev: v2.0.2
3332
hooks:

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ classifiers =
1717
Programming Language :: Python :: Implementation :: PyPy
1818

1919
[options]
20-
python_requires = >=3.7
20+
python_requires = >=3.8
2121
setup_requires =
2222
setuptools-golang>=0.2.0
2323

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py37,py37,pypy3,pre-commit
2+
envlist = py,pre-commit
33

44
[testenv]
55
deps = -rrequirements-dev.txt

0 commit comments

Comments
 (0)