diff --git a/config/ruff.toml b/config/ruff.toml index 930ca89..411fbbc 100644 --- a/config/ruff.toml +++ b/config/ruff.toml @@ -94,6 +94,11 @@ select = [ # Pydocstyle # https://docs.astral.sh/ruff/rules/#pydocstyle-d # "D", + + ########################################################################### + # MIGRATION TO NUMPY2 + # https://numpy.org/doc/stable/numpy_2_0_migration_guide.html + "NPY201", ] ignore = [ diff --git a/pixi.toml b/pixi.toml index 0d9d73a..617646e 100644 --- a/pixi.toml +++ b/pixi.toml @@ -100,7 +100,7 @@ serve.cmd = "mkdocs serve -f mkdocs.yml" ############################################## QUALITY ############################################### # Quality includes linting, type checking, and formatting [feature.quality.dependencies] -ruff = ">=0.4.4" +ruff = ">=0.4.8" mypy = ">=1.13.0,<2" types-pytz = ">=2024.2.0.20241003,<2025" types-tqdm = ">=4.66.0.20240417,<5"