Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pr-ci.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.6, 3.7, 3.8]
python: [3.6, 3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python }}
Expand Down
3 changes: 2 additions & 1 deletion .pre-commit-config.yaml
Original file line numberDiff line numberDiff line change
Expand Up@@ -49,13 +49,14 @@ repos:
- id: bandit
files: ^(src|python)/
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.711
rev: v0.780
hooks:
- id: mypy
files: ^src/
args:
- --strict
- --implicit-reexport
- --no-warn-unused-ignores
- repo: local
hooks:
- id: pylint-local
Expand Down
1 change: 1 addition & 0 deletions .pylintrc
Original file line numberDiff line numberDiff line change
Expand Up@@ -13,6 +13,7 @@ disable=
too-few-public-methods, # triggers when inheriting
ungrouped-imports, # clashes with isort
duplicate-code, # broken, setup.py
invalid-name,

[BASIC]

Expand Down