From 9a8fb18ec76eb562e1d8b54d8a952a8ff7b11b24 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 29 Oct 2024 17:55:19 +0100 Subject: [PATCH] Bump the dependencies group with 4 updates (#169) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps the dependencies group with 4 updates: [phonenumberslite](https://github.com/daviddrysdale/python-phonenumbers), [rich](https://github.com/Textualize/rich), [flake8-comprehensions](https://github.com/adamchainz/flake8-comprehensions) and [mypy](https://github.com/python/mypy). Updates `phonenumberslite` from 8.13.47 to 8.13.48
Commits

Updates `rich` from 13.9.2 to 13.9.3
Release notes

Sourced from rich's releases.

The irregular expression release

Fix a broken regex that resulted in the slow path being chosen for some operations. This fix should result in notable speedups for some operations, such as wrapping text.

[13.9.3] - 2024-10-22

Fixed

Changelog

Sourced from rich's changelog.

[13.9.3] - 2024-10-22

Fixed

Commits

Updates `flake8-comprehensions` from 3.15.0 to 3.16.0
Changelog

Sourced from flake8-comprehensions's changelog.

3.16.0 (2024-10-27)

Commits

Updates `mypy` from 1.12.1 to 1.13.0
Changelog

Sourced from mypy's changelog.

Mypy Release Notes

Next release

Mypy 1.13

We’ve just uploaded mypy 1.13 to the Python Package Index (PyPI). Mypy is a static type checker for Python. 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.

Note that unlike typical releases, Mypy 1.13 does not have any changes to type checking semantics from 1.12.1.

Improved performance

Mypy 1.13 contains several performance improvements. Users can expect mypy to be 5-20% faster. In environments with long search paths (such as environments using many editable installs), mypy can be significantly faster, e.g. 2.2x faster in the use case targeted by these improvements.

Mypy 1.13 allows use of the orjson library for handling the cache instead of the stdlib json, for improved performance. You can ensure the presence of orjson using the faster-cache extra:

python3 -m pip install -U mypy[faster-cache]

Mypy may depend on orjson by default in the future.

These improvements were contributed by Shantanu.

List of changes:

Acknowledgements

Thanks to all mypy contributors who contributed to this release:

Mypy 1.12

We’ve just uploaded mypy 1.12 to the Python Package Index (PyPI). Mypy is a static type

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 49966ed..85ba9b8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,9 +23,9 @@ classifiers = [ ] dependencies = [ "email_validator==2.2.0", - "phonenumberslite==8.13.47", + "phonenumberslite==8.13.48", "pydantic==2.9.2", - "rich==13.9.2", + "rich==13.9.3", "typer[all]==0.12.5", "Unidecode==1.3.8", ] @@ -36,14 +36,14 @@ dev = [ "black==24.10.0", "flake8-bugbear==24.8.19", "flake8-builtins==2.5.0", - "flake8-comprehensions==3.15.0", + "flake8-comprehensions==3.16.0", "flake8-docstrings==1.7.0", "flake8-encodings[classes]==0.5.1", "flake8-return==1.2.0", "flake8-simplify==0.21.0", "flake8==7.1.1", "isort==5.13.2", - "mypy==1.12.1", + "mypy==1.13.0", "pep8-naming==0.14.1", "pytest==8.3.3", ]