Skip to content

Commit 50a9fef

Browse files
committed
1 parent dd97157 commit 50a9fef

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,12 +8,12 @@ on:
88

99
jobs:
1010
main-windows:
11-
uses: asottile/workflows/.github/workflows/tox.yml@v1.0.0
11+
uses: asottile/workflows/.github/workflows/tox.yml@v1.5.0
1212
with:
1313
env: '["py38"]'
1414
os: windows-latest
1515
main-linux:
16-
uses: asottile/workflows/.github/workflows/tox.yml@v1.0.0
16+
uses: asottile/workflows/.github/workflows/tox.yml@v1.5.0
1717
with:
18-
env: '["py37", "py38", "py39", "py310"]'
18+
env: '["py38", "py39", "py310", "py311"]'
1919
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
@@ -21,7 +21,7 @@ packages = find:
2121
install_requires =
2222
ruamel.yaml>=0.15
2323
tomli>=1.1.0;python_version<"3.11"
24-
python_requires = >=3.7
24+
python_requires = >=3.8
2525

2626
[options.packages.find]
2727
exclude =

tox.ini

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

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

0 commit comments

Comments
 (0)