Skip to content

build(deps-dev): bump mypy from 1.9.0 to 1.10.0#1771

Merged
RobertSamoilescu merged 2 commits into
masterfrom
dependabot/pip/mypy-1.10.0
Jul 4, 2024
Merged

build(deps-dev): bump mypy from 1.9.0 to 1.10.0#1771
RobertSamoilescu merged 2 commits into
masterfrom
dependabot/pip/mypy-1.10.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github May 20, 2024

Copy link
Copy Markdown
Contributor

Bumps mypy from 1.9.0 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.

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels May 20, 2024
@dependabot
dependabot Bot requested a review from a team May 20, 2024 05:41
@dependabot
dependabot Bot force-pushed the dependabot/pip/mypy-1.10.0 branch 3 times, most recently from 4d753c5 to 68568ea Compare May 22, 2024 10:02
@CLAassistant

CLAassistant commented May 22, 2024

Copy link
Copy Markdown

CLA assistant check
All committers have signed the CLA.

@dependabot
dependabot Bot force-pushed the dependabot/pip/mypy-1.10.0 branch 3 times, most recently from ff67bd4 to fda38be Compare June 7, 2024 09:56
@dependabot
dependabot Bot force-pushed the dependabot/pip/mypy-1.10.0 branch 2 times, most recently from ad956e6 to cec4e3d Compare June 17, 2024 16:03
dependabot Bot and others added 2 commits July 4, 2024 14:40
Bumps [mypy](https://github.com/python/mypy) from 1.9.0 to 1.10.0.
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@1.9.0...v1.10.0)

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

Signed-off-by: dependabot[bot] <[email protected]>
@RobertSamoilescu
RobertSamoilescu force-pushed the dependabot/pip/mypy-1.10.0 branch from cec4e3d to 6b3cd31 Compare July 4, 2024 13:51
@RobertSamoilescu
RobertSamoilescu merged commit fcf3d5a into master Jul 4, 2024
@RobertSamoilescu
RobertSamoilescu deleted the dependabot/pip/mypy-1.10.0 branch July 4, 2024 14:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python Pull requests that update Python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants