From 32f541986b189ca0e716166602b4a5bb748ad110 Mon Sep 17 00:00:00 2001 From: Maximilian Roos Date: Thu, 14 Sep 2023 10:39:58 -0700 Subject: [PATCH] --- pyproject.toml | 33 +++++++++++++++------------------ 1 file changed, 15 insertions(+), 18 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 15c6bf194a5..509bd52343b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ requires = [ ] [tool.setuptools_scm] -fallback_version = "999" +fallback_version = "9999" [tool.coverage.run] omit = [ @@ -64,7 +64,7 @@ module = [ "sparse.*", "toolz.*", "zarr.*", - "numpy.exceptions.*", # remove once support for `numpy<2.0` has been dropped + "numpy.exceptions.*", # remove once support for `numpy<2.0` has been dropped ] [[tool.mypy.overrides]] @@ -72,31 +72,28 @@ ignore_errors = true module = [] [tool.ruff] -target-version = "py39" builtins = ["ellipsis"] exclude = [ - ".eggs", - "doc", - "_typed_ops.pyi", + ".eggs", + "doc", + "_typed_ops.pyi", ] +target-version = "py39" # E402: module level import not at top of file # E501: line too long - let black worry about that # E731: do not assign a lambda expression, use a def ignore = [ - "E402", - "E501", - "E731", + "E402", + "E501", + "E731", ] select = [ - # Pyflakes - "F", - # Pycodestyle - "E", - "W", - # isort - "I", - # Pyupgrade - "UP", + # Pyflakes + "F", # Pycodestyle + "E", + "W", # isort + "I", # Pyupgrade + "UP", ] [tool.ruff.isort]