From 49152a85a59c0ba8f0ae146f3080e6760a24d87f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 25 Dec 2025 16:01:20 +0000 Subject: [PATCH 1/3] build(deps-dev): bump the pip group with 3 updates Bumps the pip group with 3 updates: [pytest](https://github.com/pytest-dev/pytest), [pytest-run-parallel](https://github.com/Quansight-Labs/pytest-run-parallel) and [furo](https://github.com/pradyunsg/furo). Updates `pytest` from 8.3.5 to 8.4.2 - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/8.3.5...8.4.2) Updates `pytest-run-parallel` from 0.8.0 to 0.8.1 - [Release notes](https://github.com/Quansight-Labs/pytest-run-parallel/releases) - [Changelog](https://github.com/Quansight-Labs/pytest-run-parallel/blob/main/RELEASE.md) - [Commits](https://github.com/Quansight-Labs/pytest-run-parallel/compare/v0.8.0...v0.8.1) Updates `furo` from 2025.9.25 to 2025.12.19 - [Release notes](https://github.com/pradyunsg/furo/releases) - [Changelog](https://github.com/pradyunsg/furo/blob/main/docs/changelog.md) - [Commits](https://github.com/pradyunsg/furo/compare/2025.09.25...2025.12.19) --- updated-dependencies: - dependency-name: pytest dependency-version: 8.4.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: pip - dependency-name: pytest-run-parallel dependency-version: 0.8.1 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: pip - dependency-name: furo dependency-version: 2025.12.19 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: pip ... Signed-off-by: dependabot[bot] --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 9418a20..c72bf5c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,8 +6,8 @@ build-backend = "setuptools.build_meta" test = [ "pytest==9.0.2 ; python_version >= '3.10'", "pytest==8.4.2 ; python_version == '3.9'", - "pytest==8.3.5 ; python_version == '3.8'", - "pytest-run-parallel==0.8.0 ; python_version >= '3.13'", + "pytest==8.4.2 ; python_version == '3.8'", + "pytest-run-parallel==0.8.1 ; python_version >= '3.13'", "typing_extensions>=4.6.0", ] benchmark = [ @@ -22,7 +22,7 @@ coverage = [ ] docs = [ "sphinx==8.2.3", - "furo==2025.9.25", + "furo==2025.12.19", ] dev = [ {include-group = "coverage"}, From 32f82fa7f0b2729c05e6414ec0eed1e9d3c2b44f Mon Sep 17 00:00:00 2001 From: mayeut Date: Mon, 29 Dec 2025 08:21:48 +0100 Subject: [PATCH 2/3] Update pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c72bf5c..27f2012 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" test = [ "pytest==9.0.2 ; python_version >= '3.10'", "pytest==8.4.2 ; python_version == '3.9'", - "pytest==8.4.2 ; python_version == '3.8'", + "pytest==8.3.5 ; python_version == '3.8'", "pytest-run-parallel==0.8.1 ; python_version >= '3.13'", "typing_extensions>=4.6.0", ] From 60c898a16f2d534ab12adc3259f4545c5e5b0aac Mon Sep 17 00:00:00 2001 From: mayeut Date: Mon, 29 Dec 2025 08:23:29 +0100 Subject: [PATCH 3/3] Update noxfile.py --- noxfile.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/noxfile.py b/noxfile.py index 175b07d..af0c498 100644 --- a/noxfile.py +++ b/noxfile.py @@ -92,8 +92,7 @@ def test_parallel(session: nox.Session) -> None: """Run tests.""" posargs = session.posargs if not posargs: - # TODO remove -k test_pybase64, https://github.com/Quansight-Labs/pytest-run-parallel/pull/157 - posargs = ["-k", "test_pybase64", "--parallel-threads=auto", "--iterations=32"] + posargs = ["--parallel-threads=auto", "--iterations=32"] session.install(*_get_group_dependencies("test")) # make extension mandatory by exporting CIBUILDWHEEL=1 env = {"CIBUILDWHEEL": "1"}