Ruff - add numpy 2.0 deprecation warnings

This commit is contained in:
Evie Litherland-Smith 2024-06-19 16:32:23 +01:00
parent a2bb9db9ce
commit 49f428e4b2

View file

@ -5,6 +5,7 @@ select = [
"B", # Flake8 bugbear rules "B", # Flake8 bugbear rules
"PD", # Pandas vet rules "PD", # Pandas vet rules
"NPY", # NumPy specific rules "NPY", # NumPy specific rules
"NPY201", # NumPy 2.0 deprecation warnings
"RUF", # Ruff specific rules "RUF", # Ruff specific rules
"PERF1", "PERF2", # Performance lints from Perflint "PERF1", "PERF2", # Performance lints from Perflint
"E101", # Mixed spaces and tabs "E101", # Mixed spaces and tabs