Skip to content

Commit c47604a

Browse files
committed
1 parent 0865ad1 commit c47604a

File tree

4 files changed

+10
-11
lines changed

4 files changed

+10
-11
lines changed

.github/workflows/main.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ on:
88

99
jobs:
1010
main-windows:
11-
uses: asottile/workflows/.github/workflows/tox.yml@v1.4.2
11+
uses: asottile/workflows/.github/workflows/tox.yml@v1.5.0
1212
with:
1313
env: '["py38"]'
1414
os: windows-latest
1515
wheel-tags: true
1616
main-macos:
17-
uses: asottile/workflows/.github/workflows/tox.yml@v1.4.2
17+
uses: asottile/workflows/.github/workflows/tox.yml@v1.5.0
1818
with:
1919
env: '["py38"]'
2020
os: macos-latest
2121
wheel-tags: true
2222
main-linux:
23-
uses: asottile/workflows/.github/workflows/tox.yml@v1.4.2
23+
uses: asottile/workflows/.github/workflows/tox.yml@v1.5.0
2424
with:
2525
env: '["py38"]'
2626
os: ubuntu-latest

.pre-commit-config.yaml

+5-6
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ classifiers =
1616
Programming Language :: Python :: Implementation :: PyPy
1717

1818
[options]
19-
python_requires = >=3.7
19+
python_requires = >=3.8

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py38,pre-commit
2+
envlist = py,pre-commit
33

44
[testenv]
55
commands =

0 commit comments

Comments
 (0)