From b944c41489e76d9b418ac4be85e27dff30aa9ee6 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 17 Apr 2026 13:21:18 +0000 Subject: [PATCH 1/3] fix: update pytest requirement to patched version >= 9.0.3 (GHSA-6w46-j5rx-g56g) Agent-Logs-Url: https://github.com/fabiocaccamo/python-codicefiscale/sessions/d71b6a20-7a74-4f5f-824f-24e190773e0a Co-authored-by: fabiocaccamo <1035294+fabiocaccamo@users.noreply.github.com> --- requirements-test.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-test.txt b/requirements-test.txt index fdd398b..646294d 100644 --- a/requirements-test.txt +++ b/requirements-test.txt @@ -2,6 +2,6 @@ coverage == 7.13.* mypy == 1.20.* pre-commit == 4.5.* -pytest==9.0.* +pytest>=9.0.3 pytest-cov == 7.1.* tox == 4.53.* From 24a2f53c1e5ed2d93fb8b0e1a1d6e65f52886b38 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 17 Apr 2026 13:22:03 +0000 Subject: [PATCH 2/3] fix: bound pytest to <10 to prevent unexpected major version upgrades Agent-Logs-Url: https://github.com/fabiocaccamo/python-codicefiscale/sessions/d71b6a20-7a74-4f5f-824f-24e190773e0a Co-authored-by: fabiocaccamo <1035294+fabiocaccamo@users.noreply.github.com> --- requirements-test.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-test.txt b/requirements-test.txt index 646294d..fdd7d00 100644 --- a/requirements-test.txt +++ b/requirements-test.txt @@ -2,6 +2,6 @@ coverage == 7.13.* mypy == 1.20.* pre-commit == 4.5.* -pytest>=9.0.3 +pytest>=9.0.3,<10 pytest-cov == 7.1.* tox == 4.53.* From cca5c5c567f1e9fa4c2f5dbb4460d6deed9c1d95 Mon Sep 17 00:00:00 2001 From: Fabio Caccamo Date: Fri, 17 Apr 2026 06:47:36 -0700 Subject: [PATCH 3/3] Update requirements-test.txt Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- requirements-test.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-test.txt b/requirements-test.txt index fdd7d00..15fb2b9 100644 --- a/requirements-test.txt +++ b/requirements-test.txt @@ -2,6 +2,6 @@ coverage == 7.13.* mypy == 1.20.* pre-commit == 4.5.* -pytest>=9.0.3,<10 +pytest >= 9.0.3, <10 pytest-cov == 7.1.* tox == 4.53.*