From cae4e5de58437330b6657d30680ac5a95f056fc0 Mon Sep 17 00:00:00 2001 From: Emily Rockman Date: Thu, 23 Jan 2025 08:25:13 -0600 Subject: [PATCH] use the new location for dbt-postgres --- ARCHITECTURE.md | 2 +- dev-requirements.txt | 2 +- docker/README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ARCHITECTURE.md b/ARCHITECTURE.md index f24e573e850..7bc69ed73e4 100644 --- a/ARCHITECTURE.md +++ b/ARCHITECTURE.md @@ -32,7 +32,7 @@ This is the docs website code. It comes from the dbt-docs repository, and is gen ## Adapters dbt uses an adapter-plugin pattern to extend support to different databases, warehouses, query engines, etc. -Note: dbt-postgres used to exist in dbt-core but is now in [its own repo](https://github.com/dbt-labs/dbt-postgres) +Note: dbt-postgres used to exist in dbt-core but is now in [a separate repo](https://github.com/dbt-labs/dbt-adapters/dbt-postgres) Each adapter is a mix of python, Jinja2, and SQL. The adapter code also makes heavy use of Jinja2 to wrap modular chunks of SQL functionality, define default implementations, and allow plugins to override it. diff --git a/dev-requirements.txt b/dev-requirements.txt index 5f393349744..a0ddce0fe5a 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -1,7 +1,7 @@ git+https://github.com/dbt-labs/dbt-adapters.git@main git+https://github.com/dbt-labs/dbt-adapters.git@main#subdirectory=dbt-tests-adapter git+https://github.com/dbt-labs/dbt-common.git@main -git+https://github.com/dbt-labs/dbt-postgres.git@main +git+https://github.com/dbt-labs/dbt-adapters.git@main#subdirectory=dbt-postgres # black must match what's in .pre-commit-config.yaml to be sure local env matches CI black==24.3.0 bumpversion diff --git a/docker/README.md b/docker/README.md index d05184146ed..1a2830cb260 100644 --- a/docker/README.md +++ b/docker/README.md @@ -7,7 +7,7 @@ This Dockerfile can create images for the following targets, each named after th * `dbt-core` _(no db-adapter support)_ * `dbt-third-party` _(requires additional build-arg)_ -For platform-specific images, please refer to that platform's repository (eg. `dbt-labs/dbt-postgres`) +For platform-specific images, please refer to that platform's repository (eg. `dbt-labs/dbt-adapters/dbt-postgres`) In order to build a new image, run the following docker command. ```