Skip to content
This repository was archived by the owner on Nov 15, 2024. It is now read-only.

Commit 451c117

Browse files
Merge pull request #39 from numat/renovate/ruff
Update ruff to v0.7.3
2 parents 8093b9b + f8f047c commit 451c117

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
python -m pip install '.[test]'
3535
- name: Lint with ruff
3636
run: |
37-
ruff .
37+
ruff check .
3838
- name: Check types with mypy
3939
run: |
4040
mypy huber

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ repos:
1010
- id: check-added-large-files
1111
- id: check-json
1212
- repo: https://github.com/charliermarsh/ruff-pre-commit
13-
rev: v0.4.7
13+
rev: v0.7.3
1414
hooks:
1515
- id: ruff
16-
args: [--fix, --exit-non-zero-on-fix]
16+
args: [check, --fix, --exit-non-zero-on-fix]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
'pytest',
2727
'pytest-cov',
2828
'pytest-asyncio',
29-
'ruff==0.4.7',
29+
'ruff==0.7.3',
3030
],
3131
},
3232
license='GPLv2',

0 commit comments

Comments
 (0)