Skip to content

Commit

Permalink
Support for mypy-1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kedder committed Mar 12, 2024
1 parent 441c17b commit 1c3cca3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
## 1.0.4 (unreleased)
---------------------

- Nothing changed yet.
- Support for mypy up to 1.9.x


## 1.0.3 (2023-12-26)
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ packages =
zope-stubs
package_dir = =src
install_requires =
mypy>=1.0.0,<1.9.0
mypy>=1.0.0,<1.10.0
zope.interface
zope.schema
include_package_data = True
Expand Down
2 changes: 1 addition & 1 deletion tests/samples/interface_implications.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def main(obj: Optional[IBookmark]) -> None:
interface_implications.py:21: note: Revealed type is "__main__.IBookmark"
interface_implications.py:22: note: Revealed type is "Union[__main__.IBookmark, None]"
interface_implications.py:26: note: Revealed type is "Type[__main__.IBookmark]"
interface_implications.py:28: note: Revealed type is "Union[Type[__main__.IBookmark], Type[None]]"
interface_implications.py:28: note: Revealed type is "Type[None]"
interface_implications.py:29: note: Revealed type is "Union[Type[__main__.IBookmark], Type[None]]"
</output>
"""

0 comments on commit 1c3cca3

Please sign in to comment.