Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump mypy from 1.7.1 to 1.10.0 #87

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 29, 2024

Bumps mypy from 1.7.1 to 1.10.0.

Changelog

Sourced from mypy's changelog.

Mypy Release Notes

Next release

Mypy 1.10

We’ve just uploaded mypy 1.10 to the Python Package Index (PyPI). Mypy is a static type checker for Python. This release includes new features, performance improvements and bug fixes. You can install it as follows:

python3 -m pip install -U mypy

You can read the full documentation for this release on Read the Docs.

Support TypeIs (PEP 742)

Mypy now supports TypeIs (PEP 742), which allows functions to narrow the type of a value, similar to isinstance(). Unlike TypeGuard, TypeIs can narrow in both the if and else branches of an if statement:

from typing_extensions import TypeIs
def is_str(s: object) -> TypeIs[str]:
return isinstance(s, str)
def f(o: str | int) -> None:
if is_str(o):
# Type of o is 'str'
...
else:
# Type of o is 'int'
...

TypeIs will be added to the typing module in Python 3.13, but it can be used on earlier Python versions by importing it from typing_extensions.

This feature was contributed by Jelle Zijlstra (PR 16898).

Support TypeVar Defaults (PEP 696)

PEP 696 adds support for type parameter defaults. Example:

from typing import Generic
from typing_extensions import TypeVar
</tr></table>

... (truncated)

Commits

Dependabot compatibility score

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 29, 2024

The following labels could not be found: Task.

@github-actions github-actions bot enabled auto-merge April 29, 2024 23:01
@dependabot dependabot bot force-pushed the dependabot/pip/mypy-1.10.0 branch from 1254e29 to e687e7f Compare April 29, 2024 23:05
@dependabot dependabot bot force-pushed the dependabot/pip/mypy-1.10.0 branch from e687e7f to b5da3e9 Compare April 29, 2024 23:08
@dependabot dependabot bot force-pushed the dependabot/pip/mypy-1.10.0 branch from b5da3e9 to 7c84e05 Compare April 29, 2024 23:11
@dependabot dependabot bot force-pushed the dependabot/pip/mypy-1.10.0 branch from 7c84e05 to a63291b Compare May 6, 2024 22:28
@dependabot dependabot bot force-pushed the dependabot/pip/mypy-1.10.0 branch from a63291b to 4cfa985 Compare May 6, 2024 22:31
@dependabot dependabot bot force-pushed the dependabot/pip/mypy-1.10.0 branch from 4cfa985 to 6678b7f Compare May 6, 2024 22:35
@dependabot dependabot bot force-pushed the dependabot/pip/mypy-1.10.0 branch from 6678b7f to 6225067 Compare May 13, 2024 22:36
@dependabot dependabot bot force-pushed the dependabot/pip/mypy-1.10.0 branch from 6225067 to 817ff67 Compare May 13, 2024 22:41
@dependabot dependabot bot force-pushed the dependabot/pip/mypy-1.10.0 branch from 817ff67 to d3e770c Compare May 13, 2024 22:45
@dependabot dependabot bot force-pushed the dependabot/pip/mypy-1.10.0 branch from d3e770c to d628ce3 Compare May 20, 2024 22:10
@dependabot dependabot bot force-pushed the dependabot/pip/mypy-1.10.0 branch from d628ce3 to 43e0d8b Compare May 20, 2024 22:13
@dependabot dependabot bot force-pushed the dependabot/pip/mypy-1.10.0 branch from 43e0d8b to 7e95fc8 Compare May 20, 2024 22:17
@dependabot dependabot bot force-pushed the dependabot/pip/mypy-1.10.0 branch from 7e95fc8 to b2a5b32 Compare May 27, 2024 22:38
@dependabot dependabot bot force-pushed the dependabot/pip/mypy-1.10.0 branch from b2a5b32 to 8445734 Compare May 27, 2024 22:41
Bumps [mypy](https://github.com/python/mypy) from 1.7.1 to 1.10.0.
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.7.1...v1.10.0)

---
updated-dependencies:
- dependency-name: mypy
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/pip/mypy-1.10.0 branch from 8445734 to 06ff994 Compare May 27, 2024 22:45
Copy link
Contributor Author

dependabot bot commented on behalf of github Jul 1, 2024

Superseded by #117.

@dependabot dependabot bot closed this Jul 1, 2024
auto-merge was automatically disabled July 1, 2024 22:43

Pull request was closed

@dependabot dependabot bot deleted the dependabot/pip/mypy-1.10.0 branch July 1, 2024 22:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants