Skip to content

Commit

Permalink
chore(ci): test with Python 3.12 (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
justinchuby committed Feb 4, 2024
1 parent c9727c9 commit 327e653
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python_version: ["3.9", "3.10", "3.11"]
python_version: ["3.9", "3.10", "3.11", "3.12"]

runs-on: ${{ matrix.os }}
steps:
Expand Down
12 changes: 6 additions & 6 deletions .lintrunner.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ init_command = [
'run',
'pip_init',
'--dry-run={{DRYRUN}}',
'flake8==5.0.4',
'flake8-bugbear==22.10.27',
'flake8-pyi==22.11.0',
'dlint==0.13.0',
'flake8-docstrings==1.6.0',
'flake8==7.0.0',
'flake8-bugbear==24.1.17',
'flake8-pyi==24.1.0',
'dlint==0.14.1',
'flake8-docstrings==1.7.0',
]

[[linter]]
Expand Down Expand Up @@ -197,7 +197,7 @@ init_command = [
'run',
'pip_init',
'--dry-run={{DRYRUN}}',
'pylint==2.15.5',
'pylint==3.0.3',
]

[[linter]]
Expand Down
2 changes: 1 addition & 1 deletion lintrunner_adapters/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def cli() -> None:


@cli.command(
context_settings=dict(
context_settings=dict( # pylint: disable=use-dict-literal
ignore_unknown_options=True,
allow_extra_args=True,
),
Expand Down

0 comments on commit 327e653

Please sign in to comment.