Skip to content

Commit 8df8c5e

Browse files
authored
Merge pull request #431 from sass/py38-plus
py38-plus
2 parents 0b0b272 + 8904c71 commit 8df8c5e

File tree

3 files changed

+11
-12
lines changed

3 files changed

+11
-12
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,23 @@ 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:
13-
env: '["py37"]'
13+
env: '["py38"]'
1414
os: windows-latest
1515
arch: '["x64", "x86"]'
1616
wheel-tags: true
1717
submodules: true
1818
main-macos:
19-
uses: asottile/workflows/.github/workflows/tox.yml@v1.4.2
19+
uses: asottile/workflows/.github/workflows/tox.yml@v1.5.0
2020
with:
21-
env: '["py37"]'
21+
env: '["py38"]'
2222
os: macos-latest
2323
wheel-tags: true
2424
submodules: true
2525
main-linux:
26-
uses: asottile/workflows/.github/workflows/tox.yml@v1.4.2
26+
uses: asottile/workflows/.github/workflows/tox.yml@v1.5.0
2727
with:
28-
env: '["pypy3", "py37", "py38", "py39", "py310"]'
28+
env: '["pypy3", "py38", "py39", "py310", "py311"]'
2929
os: ubuntu-latest
3030
submodules: true

.pre-commit-config.yaml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,16 @@ repos:
1313
rev: v3.10.0
1414
hooks:
1515
- id: reorder-python-imports
16-
args: [--py37-plus]
16+
args: [--py38-plus]
1717
- repo: https://github.com/asottile/add-trailing-comma
18-
rev: v2.5.1
18+
rev: v3.0.0
1919
hooks:
2020
- id: add-trailing-comma
21-
args: [--py36-plus]
2221
- repo: https://github.com/asottile/pyupgrade
23-
rev: v3.7.0
22+
rev: v3.8.0
2423
hooks:
2524
- id: pyupgrade
26-
args: [--py37-plus]
25+
args: [--py38-plus]
2726
- repo: https://github.com/pre-commit/mirrors-autopep8
2827
rev: v2.0.2
2928
hooks:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,6 +284,6 @@ def finalize_options(self):
284284
'Topic :: Software Development :: Code Generators',
285285
'Topic :: Software Development :: Compilers',
286286
],
287-
python_requires='>=3.7',
287+
python_requires='>=3.8',
288288
cmdclass=cmdclass,
289289
)

0 commit comments

Comments
 (0)