From efd934c0a04dd4817ce5ff3c36fc0f1aec740432 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 2 Jan 2025 08:58:44 +0000 Subject: [PATCH 1/4] build(deps): update testfixtures requirement from ~=8.2.0 to ~=8.3.0 Updates the requirements on [testfixtures](https://github.com/Simplistix/testfixtures) to permit the latest version. - [Changelog](https://github.com/simplistix/testfixtures/blob/master/CHANGELOG.rst) - [Commits](https://github.com/Simplistix/testfixtures/compare/8.2.0...8.3.0) --- updated-dependencies: - dependency-name: testfixtures dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- test-requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-requirements.txt b/test-requirements.txt index fed1748..4edc7c1 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -1,3 +1,3 @@ pytest~=7.2.2 coverage~=7.2.2 -testfixtures~=8.2.0 +testfixtures~=8.3.0 From 1fb8d986c93dba56d8186dde9f716b3d65df6102 Mon Sep 17 00:00:00 2001 From: Muhammad Sufyan Date: Wed, 26 Nov 2025 18:46:06 +0500 Subject: [PATCH 2/4] adds upper limit to the testfixture dependency --- test-requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-requirements.txt b/test-requirements.txt index a11570b..c8088d9 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -1,4 +1,4 @@ pytest>=7.2.2, <8.4.0 pytest-mock~=3.14.0 coverage>=7.2.2, <7.7.0 -testfixtures~=8.3.0 +testfixtures~=8.3.0, <= 10.0.0 From f5e691141a3347bda790696fc33ff53cd690e8fb Mon Sep 17 00:00:00 2001 From: Muhammad Sufyan Date: Wed, 26 Nov 2025 18:46:51 +0500 Subject: [PATCH 3/4] updates the lower limit of the dependency --- test-requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-requirements.txt b/test-requirements.txt index c8088d9..db773b4 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -1,4 +1,4 @@ pytest>=7.2.2, <8.4.0 pytest-mock~=3.14.0 coverage>=7.2.2, <7.7.0 -testfixtures~=8.3.0, <= 10.0.0 +testfixtures>=8.3.0, <= 10.0.0 From a2b557a7e31eda6a65401355a46a711576ac2a6b Mon Sep 17 00:00:00 2001 From: Muhammad Sufyan Date: Wed, 26 Nov 2025 18:47:38 +0500 Subject: [PATCH 4/4] Update setup.py --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 25dc77b..79297bd 100644 --- a/setup.py +++ b/setup.py @@ -34,6 +34,7 @@ tests_require=[ 'pytest>=7.2.2, <8.4.0', 'coverage>=7.2.2, <7.7.0', - 'pytest-cov>=4.0, <6.1' + 'pytest-cov>=4.0, <6.1', + 'testfixtures>=8.3.0, <= 10.0.0' ] )