Skip to content

Commit

Permalink
Merge pull request #115 from Shoobx/dependabot/pip/mypy-gte-1.0.0-and…
Browse files Browse the repository at this point in the history
…-lt-1.11.0

Update mypy requirement from <1.10.0,>=1.0.0 to >=1.0.0,<1.11.0
  • Loading branch information
kedder committed Jul 2, 2024
2 parents 51037c8 + 7676307 commit 25cecd4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ packages =
zope-stubs
package_dir = =src
install_requires =
mypy>=1.0.0,<1.10.0
mypy>=1.0.0,<1.11.0
zope.interface
zope.schema
include_package_data = True
Expand Down
6 changes: 3 additions & 3 deletions tests/samples/interface_implications.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ def main(obj: Optional[IBookmark]) -> None:
interface_implications.py:19: note: Revealed type is "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 "Type[None]"
interface_implications.py:29: note: Revealed type is "Union[Type[__main__.IBookmark], Type[None]]"
interface_implications.py:26: note: Revealed type is "type[__main__.IBookmark]"
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 25cecd4

Please sign in to comment.