From 31de02cc52a5ab073a4560ea69f20fa99d02419d Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Sat, 18 Jan 2025 00:35:09 +0000 Subject: [PATCH] Bump Ruff to 0.9.2 (#13250) --- pyproject.toml | 2 +- tests/test_extensions/test_ext_autosectionlabel.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 482ccbd7b..4debbde3f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -81,7 +81,7 @@ docs = [ "sphinxcontrib-websupport", ] lint = [ - "ruff==0.9.1", + "ruff==0.9.2", "mypy==1.14.1", "sphinx-lint>=0.9", "types-colorama==0.4.15.20240311", diff --git a/tests/test_extensions/test_ext_autosectionlabel.py b/tests/test_extensions/test_ext_autosectionlabel.py index 7c8dad560..fdd0267ab 100644 --- a/tests/test_extensions/test_ext_autosectionlabel.py +++ b/tests/test_extensions/test_ext_autosectionlabel.py @@ -8,7 +8,7 @@ import pytest @pytest.mark.sphinx('html', testroot='ext-autosectionlabel') -def test_autosectionlabel_html(app, skipped_labels=False): +def test_autosectionlabel_html(app): app.build(force_all=True) content = (app.outdir / 'index.html').read_text(encoding='utf8')