From 5a9181a3ae02821d9accecb584d090071a872732 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Jun 2025 20:51:05 +0000 Subject: [PATCH 1/2] Bump ruff from 0.4.9 to 0.11.13 Bumps [ruff](https://github.com/astral-sh/ruff) from 0.4.9 to 0.11.13. - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](https://github.com/astral-sh/ruff/compare/v0.4.9...0.11.13) --- updated-dependencies: - dependency-name: ruff dependency-version: 0.11.13 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 1eb2474..a34fc8c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,7 +4,7 @@ html5lib==1.1 pyotp==2.9.0 pytest==8.4.0 requests==2.32.4 -ruff==0.4.9 +ruff==0.11.13 six==1.17.0 typing_extensions==4.13.2 urllib3==2.3.0 From 46d4ce3279d7279aa51b87c9dd114dbebaa0939b Mon Sep 17 00:00:00 2001 From: Bill Napier Date: Mon, 9 Jun 2025 20:58:47 +0000 Subject: [PATCH 2/2] Change to ruff check --- .github/workflows/python.yaml | 4 ++-- .github/workflows/python_selfhost.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python.yaml b/.github/workflows/python.yaml index 8f0972b..7461b4c 100644 --- a/.github/workflows/python.yaml +++ b/.github/workflows/python.yaml @@ -24,9 +24,9 @@ jobs: - name: 'Lint with ruff' run: | # stop the build if there are Python syntax errors or undefined names - ruff --output-format=github --select=E9,F63,F7,F82 --target-version=py37 . + ruff check --output-format=github --select=E9,F63,F7,F82 --target-version=py37 . # default set of ruff rules with GitHub Annotations - ruff --output-format=github --target-version=py37 . + ruff check --output-format=github --target-version=py37 . - name: 'Test with pytest' run: | pytest diff --git a/.github/workflows/python_selfhost.yaml b/.github/workflows/python_selfhost.yaml index ee883b1..140b383 100644 --- a/.github/workflows/python_selfhost.yaml +++ b/.github/workflows/python_selfhost.yaml @@ -24,9 +24,9 @@ jobs: - name: 'Lint with ruff' run: | # stop the build if there are Python syntax errors or undefined names - ruff --output-format=github --select=E9,F63,F7,F82 --target-version=py37 . + ruff check --output-format=github --select=E9,F63,F7,F82 --target-version=py37 . # default set of ruff rules with GitHub Annotations - ruff --output-format=github --target-version=py37 . + ruff check --output-format=github --target-version=py37 . - name: 'Test with pytest' run: | pytest