From 0aa59f7c7d447b4f22862e462e2bd52aca48e834 Mon Sep 17 00:00:00 2001 From: Maximilian Roos Date: Fri, 14 Mar 2025 12:28:02 -0700 Subject: [PATCH 1/2] Change `python_files` in `pyproject.toml` to a list I was getting a warning from the existing scalar value --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index fa89e3c7a8a..bbe610e068c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -362,7 +362,7 @@ markers = [ "slow_hypothesis: slow hypothesis tests", ] minversion = "7" -python_files = "test_*.py" +python_files = ["test_*.py"] testpaths = ["xarray/tests", "properties"] [tool.aliases] From 1fc374024db30be1d467a97a63d209ba6874ca99 Mon Sep 17 00:00:00 2001 From: Maximilian Roos Date: Fri, 14 Mar 2025 12:29:34 -0700 Subject: [PATCH 2/2] --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index bbe610e068c..6b45aef89e4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -76,7 +76,6 @@ dev = [ "sphinx", "sphinx_autosummary_accessors", "xarray[complete,types]", - ] [project.urls]