Skip to content

Commit

Permalink
Merge pull request #78 from chriskuehl/all-repos_autofix_all-repos-ma…
Browse files Browse the repository at this point in the history
…nual

py39 
  • Loading branch information
asottile authored Oct 11, 2024
2 parents 6a1e335 c9b1fd5 commit d114cd0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 7,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:
- run: |
Expand Down
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
2 changes: 1 addition & 1 deletion rustenv.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 22,7 @@
import subprocess
import tempfile
import urllib.request
from typing import Sequence
from collections.abc import Sequence


ACTIVATE = '''\
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 17,7 @@ classifiers =

[options]
py_modules = rustenv
python_requires = >=3.8
python_requires = >=3.9

[options.entry_points]
console_scripts =
Expand Down

0 comments on commit d114cd0

Please sign in to comment.