mirror of
https://github.com/saymrwulf/cryptography.git
synced 2026-05-14 20:37:55 +00:00
ignore a new ruff warning type (#8225)
* ignore a new ruff warning type * Update ci-constraints-requirements.txt
This commit is contained in:
parent
d9053ae63e
commit
67a8facee0
2 changed files with 3 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue