From 29661761e7e21014520853b10efb69c8abeb12e8 Mon Sep 17 00:00:00 2001 From: Doug Beatty Date: Thu, 2 May 2024 07:03:33 -0600 Subject: [PATCH] Revert "Temporary dev requirements for testing" This reverts commit 94a8afa7f4f466cf542547dd1ffd57c7ed24e2a9. --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 9f95df8c..0e93423c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,7 +27,7 @@ dependencies = [ 'psycopg2>=2.9,<3.0; platform_system == "Linux"', # install `psycopg2-binary` on macos/windows (assumed development) 'psycopg2-binary>=2.9,<3.0; platform_system != "Linux"', - "dbt-adapters @ git+https://github.com/dbt-labs/dbt-adapters.git@dbeatty/date-macro", + "dbt-adapters>=0.1.0a1,<2.0", # add dbt-core to ensure backwards compatibility of installation, this is not a functional dependency "dbt-core>=1.8.0a1", # installed via dbt-adapters but used directly @@ -57,7 +57,7 @@ path = "dbt/adapters/postgres/__version__.py" [tool.hatch.envs.default] dependencies = [ - "dbt-adapters @ git+https://github.com/dbt-labs/dbt-adapters.git@dbeatty/date-macro", + "dbt-adapters @ git+https://github.com/dbt-labs/dbt-adapters.git", "dbt-common @ git+https://github.com/dbt-labs/dbt-common.git", 'pre-commit==3.7.0;python_version>="3.9"', 'pre-commit==3.5.0;python_version=="3.8"', @@ -68,7 +68,7 @@ code-quality = "pre-commit run --all-files" [tool.hatch.envs.unit-tests] dependencies = [ - "dbt-adapters @ git+https://github.com/dbt-labs/dbt-adapters.git@dbeatty/date-macro", + "dbt-adapters @ git+https://github.com/dbt-labs/dbt-adapters.git", "dbt-common @ git+https://github.com/dbt-labs/dbt-common.git", "dbt-core @ git+https://github.com/dbt-labs/dbt-core.git#subdirectory=core", "freezegun", @@ -83,7 +83,7 @@ all = "python -m pytest {args:tests/unit}" [tool.hatch.envs.integration-tests] template = "unit-tests" extra-dependencies = [ - "dbt-tests-adapter @ git+https://github.com/dbt-labs/dbt-adapters.git@dbeatty/date-macro#subdirectory=dbt-tests-adapter", + "dbt-tests-adapter @ git+https://github.com/dbt-labs/dbt-adapters.git#subdirectory=dbt-tests-adapter", ] [tool.hatch.envs.integration-tests.env-vars] DBT_TEST_USER_1 = "dbt_test_user_1"