Skip to content

Commit

Permalink
fix(ci): bump flake8 to get fix for PyCQA/pyflakes#367; per-file-igno…
Browse files Browse the repository at this point in the history
…re ext is now redundant; linter back online in CI
  • Loading branch information
klardotsh committed Jun 20, 2021
1 parent 6bfd568 commit 3797797
Show file tree
Hide file tree
Showing 3 changed files with 198 additions and 143 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,11 @@ on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
container: kmkfw/base

steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.9' # Version range or exact version of a Python version to use, using SemVer's version range syntax
- run: python -m pip install --upgrade pipenv wheel
- run: make test
8 changes: 2 additions & 6 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,17 @@ name = "pypi"
[packages]

[dev-packages]
"flake8" = "*"
"flake8" = ">=3.9.0"
"flake8-commas" = "*"
"flake8-comprehensions" = "*"
"flake8-isort" = "*"
"flake8-per-file-ignores" = "*"
"python-magic" = "*"
adafruit-ampy = "*"
ipdb = "*"
ipython = "*"
isort = "*"
neovim = "*"
s3cmd = "*"
black = "==19.3b0"
black = "==21.6b0"
flake8-quotes = "*"
flake8-black = "*"

[requires]
python_version = "3.7"
Loading

0 comments on commit 3797797

Please sign in to comment.