Skip to content

Commit

Permalink
py39+
Browse files Browse the repository at this point in the history
  • Loading branch information
asottile committed Oct 11, 2024
1 parent 9f6ff6b commit 7b5d9fd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
main:
strategy:
matrix:
python: ['3.8', '3.9', '3.10', '3.11']
python: ['3.9', '3.10', '3.11', '3.12']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ repos:
rev: v3.13.0
hooks:
- id: reorder-python-imports
args: [--py38-plus, --application-directories, '.:bench']
args: [--py39-plus, --application-directories, '.:bench']
- repo: https://github.com/asottile/pyupgrade
rev: v3.17.0
hooks:
- id: pyupgrade
args: [--py38-plus]
args: [--py39-plus]
- repo: https://github.com/asottile/add-trailing-comma
rev: v3.1.0
hooks:
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ classifiers =
packages = find:
install_requires =
markupsafe
python_requires = >=3.8
python_requires = >=3.9

[options.packages.find]
exclude =
Expand Down

0 comments on commit 7b5d9fd

Please sign in to comment.