From ede2bfbe5a8dfc64d2e01685129ef61950c5f025 Mon Sep 17 00:00:00 2001 From: Matt Field Date: Fri, 7 Mar 2025 09:19:10 +0000 Subject: [PATCH] Add missing example pyproject file for test --- tests/example_data/pyproject.toml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 tests/example_data/pyproject.toml diff --git a/tests/example_data/pyproject.toml b/tests/example_data/pyproject.toml new file mode 100644 index 00000000..124f9f0c --- /dev/null +++ b/tests/example_data/pyproject.toml @@ -0,0 +1,11 @@ +[project] +name = "example-repo" +version = "0.1.0" +description = "Add your description here" +readme = "README.md" +requires-python = ">=3.13" +dependencies = [ + "numpy>=2.2.0", + "pandas>=2.2.3", + "requests>=2.32.3", +]