Skip to content

Commit

Permalink
Merge pull request #99 from altendky/tighten_mypy
Browse files Browse the repository at this point in the history
Enable strict for mypy
  • Loading branch information
altendky committed Oct 7, 2020
2 parents 70238e1 + 0c27d38 commit 811462b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## 5.15.1.0 [unreleased]

### Added
* [#99](https://github.com/stlehmann/PyQt5-stubs/pull/99) enable mypy's strict mode
* [#92](https://github.com/stlehmann/PyQt5-stubs/pull/92) add `Sequence` methods and `.__setitem__()` to `sip.array`
* [#94](https://github.com/stlehmann/PyQt5-stubs/pull/94) add several operators to `QIODevice.OpenMode` and `QIODevice.OpenModeFlag`
* [#93](https://github.com/stlehmann/PyQt5-stubs/pull/93) test against 3.5, 3.6, 3.7, 3.8, and 3.9
Expand Down
6 changes: 4 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
[mypy]
incremental = False

strict = True
warn_unreachable = True
ignore_missing_imports = False
disallow_untyped_calls = True
disallow_untyped_defs = True

0 comments on commit 811462b

Please sign in to comment.