Skip to content

Commit

Permalink
fix: upgrade mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
koba-e964 committed May 3, 2024
1 parent 0fdcda9 commit 799793c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,21 @@ on: [push, pull_request]

jobs:
format:
strategy:
matrix:
python-version:
- '3.8'
- '3.12'

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: pip3 install .[dev]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

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 @@ selenium =
selenium >= 3.141.0
dev =
isort == 5.7.0
mypy == 0.812
mypy == 1.10.0
pylint == 2.7.0
yapf == 0.30.0
pytest >= 6.2.2, < 7
Expand Down

0 comments on commit 799793c

Please sign in to comment.