From ffec39a55df713f8e33cdaf9eb65eac4bc60e496 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 9 Sep 2025 17:54:02 +0000 Subject: [PATCH 1/2] chore(deps): update pytest-cov requirement Updates the requirements on [pytest-cov](https://github.com/pytest-dev/pytest-cov) to permit the latest version. Updates `pytest-cov` to 7.0.0 - [Changelog](https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest-cov/compare/v6.0.0...v7.0.0) --- updated-dependencies: - dependency-name: pytest-cov dependency-version: 7.0.0 dependency-type: direct:production dependency-group: production-dependencies ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a948fa0e8..2c5495951 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -77,7 +77,7 @@ dev = [ "openpyxl~=3.1", "pyparsing>=3.2.1,<4", "pytest>=8.3.4,<9", - "pytest-cov~=6.0", + "pytest-cov>=6,<8", "pytest-rerunfailures>=15,<17", "pytest-timeout>=2.3.1,<3", "pytest-xdist>=3.6.1,<4", From e3a8f1c23654b6cfb0f7c0176ea7786b2ebec7e6 Mon Sep 17 00:00:00 2001 From: Anton Kukushkin Date: Tue, 9 Sep 2025 19:06:02 +0100 Subject: [PATCH 2/2] fix: unused type ignore --- awswrangler/mysql.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awswrangler/mysql.py b/awswrangler/mysql.py index 77c8a0268..7d002c52f 100644 --- a/awswrangler/mysql.py +++ b/awswrangler/mysql.py @@ -176,7 +176,7 @@ def connect( password=attrs.password, port=attrs.port, host=attrs.host, - ssl=attrs.ssl_context, # type: ignore[arg-type] + ssl=attrs.ssl_context, read_timeout=read_timeout, write_timeout=write_timeout, connect_timeout=connect_timeout,