From 148c499b6111238ea0f43978cdab0039ca387bde Mon Sep 17 00:00:00 2001 From: Mike Alfare Date: Thu, 29 Feb 2024 15:08:43 -0500 Subject: [PATCH] point pyproject.toml to the new dbt-tests-adapter directory --- dbt-tests-adapter/pyproject.toml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/dbt-tests-adapter/pyproject.toml b/dbt-tests-adapter/pyproject.toml index 990f2d1a..c5df5998 100644 --- a/dbt-tests-adapter/pyproject.toml +++ b/dbt-tests-adapter/pyproject.toml @@ -50,16 +50,14 @@ Changelog = "https://github.com/dbt-labs/dbt-adapters/blob/main/CHANGELOG.md" requires = ["hatchling"] build-backend = "hatchling.build" -[tool.hatch.build.targets.sdist.force-include] -"../dbt/tests" = "dbt/tests" -"../dbt/__init__.py" = "dbt/__init__.py" +[tool.hatch.version] +path = "dbt/tests/__about__.py" -[tool.hatch.build.targets.wheel.force-include] -"../dbt/tests" = "dbt/tests" -"../dbt/__init__.py" = "dbt/__init__.py" +[tool.hatch.build.targets.sdist] +include = ["dbt/tests", "dbt/__init__.py"] -[tool.hatch.version] -path = "../dbt/tests/__about__.py" +[tool.hatch.build.targets.wheel] +include = ["dbt/tests", "dbt/__init__.py"] [tool.hatch.envs.build] detached = true