chore: bump to Ruff 0.0.262 (#35)

This commit is contained in:
Henry Schreiner 2023-04-19 14:02:00 -07:00 committed by GitHub
parent fb3d722e81
commit bae101822d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

@ -1 +1 @@
0.0.261
0.0.262

View File

@ -12,7 +12,7 @@ Add this to your `.pre-commit-config.yaml`:
```yaml
- repo: https://github.com/charliermarsh/ruff-pre-commit
# Ruff version.
rev: 'v0.0.261'
rev: 'v0.0.262'
hooks:
- id: ruff
```
@ -22,7 +22,7 @@ Or, to enable autofix:
```yaml
- repo: https://github.com/charliermarsh/ruff-pre-commit
# Ruff version.
rev: 'v0.0.261'
rev: 'v0.0.262'
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]

View File

@ -6,5 +6,5 @@ from setuptools import setup
setup(
name='pre_commit_placeholder_package',
version='0.0.0',
install_requires=['ruff==0.0.261'],
install_requires=['ruff==0.0.262'],
)