Skip to content

Commit

Permalink
Merge pull request #180 from asottile/all-repos_autofix_all-repos-manual
Browse files Browse the repository at this point in the history
py39+
  • Loading branch information
asottile authored Oct 11, 2024
2 parents a7792e9 + 7304de2 commit 6cc97d0
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 13 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,26 +8,26 @@ on:

jobs:
main-windows:
uses: asottile/workflows/.github/workflows/tox.yml@v1.6.1
uses: asottile/workflows/.github/workflows/tox.yml@v1.7.0
with:
env: '["py38"]'
env: '["py39"]'
os: windows-latest
arch: '["x64", "x86"]'
wheel-tags: true
main-macos:
uses: asottile/workflows/.github/workflows/tox.yml@v1.6.1
uses: asottile/workflows/.github/workflows/tox.yml@v1.7.0
with:
env: '["py38"]'
env: '["py39"]'
os: macos-latest
wheel-tags: true
main-macos-intel:
uses: asottile/workflows/.github/workflows/tox.yml@v1.6.1
uses: asottile/workflows/.github/workflows/tox.yml@v1.7.0
with:
env: '["py38"]'
env: '["py39"]'
os: macos-13
wheel-tags: true
main-linux:
uses: asottile/workflows/.github/workflows/tox.yml@v1.6.1
uses: asottile/workflows/.github/workflows/tox.yml@v1.7.0
with:
env: '["py38", "py39", "py310"]'
env: '["py39", "py310", "py311"]'
os: ubuntu-latest
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ repos:
rev: v3.13.0
hooks:
- id: reorder-python-imports
args: [--py38-plus, --add-import, 'from __future__ import annotations']
args: [--py39-plus, --add-import, 'from __future__ import annotations']
- repo: https://github.com/asottile/add-trailing-comma
rev: v3.1.0
hooks:
Expand All @@ -26,7 +26,7 @@ repos:
rev: v3.17.0
hooks:
- id: pyupgrade
args: [--py38-plus]
args: [--py39-plus]
- repo: https://github.com/hhatto/autopep8
rev: v2.3.1
hooks:
Expand Down
3 changes: 1 addition & 2 deletions bin/build-manylinux-wheels
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,7 @@ def main() -> int:
os.makedirs('dist', exist_ok=True)

for py_bin in (
'/opt/python/cp38-cp38/bin',
'/opt/python/pp38-pypy38_pp73/bin',
'/opt/python/cp39-cp39/bin',
'/opt/python/pp39-pypy39_pp73/bin',
'/opt/python/pp310-pypy310_pp73/bin',
):
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ classifiers =
py_modules = onigurumacffi
install_requires =
cffi>=1
python_requires = >=3.8
python_requires = >=3.9
setup_requires =
cffi>=1

Expand Down

0 comments on commit 6cc97d0

Please sign in to comment.