Skip to content

Commit 69367eb

Browse files
committed
Update flake8 and mypy
1 parent fd0e1da commit 69367eb

3 files changed

Lines changed: 55 additions & 47 deletions

File tree

.github/workflows/test-and-lint.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
- name: Install Python packages
2424
run: poetry install
2525
- name: Lint with flake8
26+
if: matrix.python-version >= "3.8"
2627
run: |
2728
poetry run flake8 --version
2829
poetry run flake8 --show-source --statistics asserts test_asserts.py

poetry.lock

Lines changed: 52 additions & 45 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ python = ">=3.7"
2626

2727
[tool.poetry.group.dev.dependencies]
2828
black = "^22.10.0"
29-
flake8 = "~5.0.4"
30-
mypy = "0.982"
29+
flake8 = { version = "^6.0.0", python = ">=3.8.1" }
30+
mypy = "0.991"
3131

3232
[tool.black]
3333
line-length = 79

0 commit comments

Comments
 (0)