Skip to content

Commit 542b006

Browse files
Bump ruff from 0.4.9 to 0.11.13 (#208)
* 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](astral-sh/ruff@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] <support@github.com> * Change to ruff check --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Bill Napier <napier@google.com>
1 parent 146a648 commit 542b006

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/python.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ jobs:
2424
- name: 'Lint with ruff'
2525
run: |
2626
# stop the build if there are Python syntax errors or undefined names
27-
ruff --output-format=github --select=E9,F63,F7,F82 --target-version=py37 .
27+
ruff check --output-format=github --select=E9,F63,F7,F82 --target-version=py37 .
2828
# default set of ruff rules with GitHub Annotations
29-
ruff --output-format=github --target-version=py37 .
29+
ruff check --output-format=github --target-version=py37 .
3030
- name: 'Test with pytest'
3131
run: |
3232
pytest

.github/workflows/python_selfhost.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ jobs:
2424
- name: 'Lint with ruff'
2525
run: |
2626
# stop the build if there are Python syntax errors or undefined names
27-
ruff --output-format=github --select=E9,F63,F7,F82 --target-version=py37 .
27+
ruff check --output-format=github --select=E9,F63,F7,F82 --target-version=py37 .
2828
# default set of ruff rules with GitHub Annotations
29-
ruff --output-format=github --target-version=py37 .
29+
ruff check --output-format=github --target-version=py37 .
3030
- name: 'Test with pytest'
3131
run: |
3232
pytest

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ html5lib==1.1
44
pyotp==2.9.0
55
pytest==8.4.0
66
requests==2.32.4
7-
ruff==0.4.9
7+
ruff==0.11.13
88
six==1.17.0
99
typing_extensions==4.13.2
1010
urllib3==2.4.0

0 commit comments

Comments
 (0)