ignore a new ruff warning type (#8225)

* ignore a new ruff warning type

* Update ci-constraints-requirements.txt
This commit is contained in:
Alex Gaynor 2023-02-07 08:40:55 -05:00 committed by GitHub
parent d9053ae63e
commit 67a8facee0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View file

@ -161,7 +161,7 @@ rfc3986==2.0.0
# via twine
rich==13.3.1
# via twine
ruff==0.0.241
ruff==0.0.243
# via cryptography (setup.cfg)
six==1.16.0
# via bleach

View file

@ -71,7 +71,8 @@ exclude = [
'_build',
'.hypothesis',
]
ignore = ['N818', 'UP003', 'UP006', 'UP007']
# UP007 and UP037 require a higher minimum Python version
ignore = ['N818', 'UP003', 'UP006', 'UP007', 'UP037']
select = ['E', 'F', 'I', 'N', 'W', 'UP']
line-length = 79