Skip to content

Commit

Permalink
Increase minimum Python version to 3.8
Browse files Browse the repository at this point in the history
Also address some pylint issues
  • Loading branch information
pe-st committed Jul 22, 2023
1 parent 6a27eae commit 7b1e40f
Show file tree
Hide file tree
Showing 10 changed files with 379 additions and 342 deletions.
9 changes: 6 additions & 3 deletions .flake8
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
[flake8]
extend-ignore =
E501, # line too long
E128, # continuation line under-indented for visual indent
E203 # for playing well with Black
# E501: line too long
E501,
# E128: continuation line under-indented for visual indent
E128,
# E203: for playing well with Black
E203
exclude =
.git,
__pycache__,
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
build:
strategy:
matrix:
version: ["3.7", "3.x"]
version: ["3.8", "3.x"]

runs-on: ubuntu-latest

Expand Down
Loading

0 comments on commit 7b1e40f

Please sign in to comment.