Skip to content

Commit 0e79953

Browse files
build(deps-dev): bump the pip group with 3 updates (#955)
Bumps the pip group with 2 updates: [pytest-run-parallel](https://github.com/Quansight-Labs/pytest-run-parallel) and [furo](https://github.com/pradyunsg/furo). 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](Quansight-Labs/pytest-run-parallel@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](pradyunsg/furo@2025.09.25...2025.12.19) --- updated-dependencies: - 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] <support@github.com>
1 parent 089f3c5 commit 0e79953

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

noxfile.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,7 @@ def test_parallel(session: nox.Session) -> None:
9292
"""Run tests."""
9393
posargs = session.posargs
9494
if not posargs:
95-
# TODO remove -k test_pybase64, https://github.com/Quansight-Labs/pytest-run-parallel/pull/157
96-
posargs = ["-k", "test_pybase64", "--parallel-threads=auto", "--iterations=32"]
95+
posargs = ["--parallel-threads=auto", "--iterations=32"]
9796
session.install(*_get_group_dependencies("test"))
9897
# make extension mandatory by exporting CIBUILDWHEEL=1
9998
env = {"CIBUILDWHEEL": "1"}

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ test = [
77
"pytest==9.0.2 ; python_version >= '3.10'",
88
"pytest==8.4.2 ; python_version == '3.9'",
99
"pytest==8.3.5 ; python_version == '3.8'",
10-
"pytest-run-parallel==0.8.0 ; python_version >= '3.13'",
10+
"pytest-run-parallel==0.8.1 ; python_version >= '3.13'",
1111
"typing_extensions>=4.6.0",
1212
]
1313
benchmark = [
@@ -22,7 +22,7 @@ coverage = [
2222
]
2323
docs = [
2424
"sphinx==8.2.3",
25-
"furo==2025.9.25",
25+
"furo==2025.12.19",
2626
]
2727
dev = [
2828
{include-group = "coverage"},

0 commit comments

Comments
 (0)