Skip to content

Commit 5807d2b

Browse files
authored
Merge pull request #182 from chriskuehl/all-repos_autofix_all-repos-manual
py310+
2 parents e3fa801 + a527359 commit 5807d2b

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python: ['3.9', '3.10', '3.11']
12+
python: ['3.10', '3.11', '3.12']
1313
steps:
1414
- uses: actions/checkout@v3
1515
- uses: actions/setup-python@v4

.github/workflows/publish-github-pages.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
- uses: actions/checkout@v2
99
- uses: actions/setup-python@v2
1010
with:
11-
python-version: 3.9
11+
python-version: '3.10'
1212
- run: pip install tox
1313
- run: make test-repo
1414
- name: Deploy to GitHub Pages

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ repos:
2323
rev: v3.15.0
2424
hooks:
2525
- id: reorder-python-imports
26-
args: [--py39-plus, --add-import, 'from __future__ import annotations']
26+
args: [--py310-plus, --add-import, 'from __future__ import annotations']
2727
- repo: https://github.com/asottile/pyupgrade
2828
rev: v3.20.0
2929
hooks:
3030
- id: pyupgrade
31-
args: [--py39-plus]
31+
args: [--py310-plus]
3232
- repo: https://github.com/asottile/setup-cfg-fmt
3333
rev: v2.8.0
3434
hooks:

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ packages = dumb_pypi
1818
install_requires =
1919
jinja2
2020
packaging>=20.9
21-
python_requires = >=3.9
21+
python_requires = >=3.10
2222

2323
[options.entry_points]
2424
console_scripts =

0 commit comments

Comments
 (0)