diff --git a/ci-constraints-requirements.txt b/ci-constraints-requirements.txt index 8bf99d3c1..1d1bd8b00 100644 --- a/ci-constraints-requirements.txt +++ b/ci-constraints-requirements.txt @@ -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 diff --git a/pyproject.toml b/pyproject.toml index 2cb1643de..ed0046665 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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