diff --git a/.circleci/config.yml b/.circleci/config.yml index e6ccb79..d873aa4 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -18,7 +18,7 @@ jobs: steps: - checkout - - run: pip install --pre dbt-core dbt-postgres + - run: pip install dbt-core dbt-postgres - run: name: "Run Tests - Postgres" command: | @@ -41,7 +41,7 @@ jobs: - image: cimg/python:3.9 steps: - checkout - - run: pip install --pre dbt-core dbt-redshift + - run: pip install dbt-core dbt-redshift - run: name: "Run Tests - Redshift" command: | @@ -63,7 +63,7 @@ jobs: - image: cimg/python:3.9 steps: - checkout - - run: pip install --pre dbt-core dbt-snowflake + - run: pip install dbt-core dbt-snowflake - run: name: "Run Tests - Snowflake" command: | @@ -87,7 +87,7 @@ jobs: - image: cimg/python:3.9 steps: - checkout - - run: pip install --pre dbt-core dbt-bigquery + - run: pip install dbt-core dbt-bigquery - run: name: Setup Environment Variables command: | diff --git a/Makefile b/Makefile index e3545fc..d842cb9 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ dev: ## Installs dbt-* packages in develop mode along with development dependenc @\ echo "Install dbt-$(target)..."; \ python -m pip install --upgrade pip setuptools; \ - python -m pip install --pre dbt-core "dbt-$(target)"; + python -m pip install dbt-core "dbt-$(target)"; .PHONY: setup-db setup-db: ## Setup Postgres database with docker-compose for system testing. diff --git a/integration_tests/README.md b/integration_tests/README.md index ed9c863..91f9ef0 100644 --- a/integration_tests/README.md +++ b/integration_tests/README.md @@ -89,7 +89,7 @@ Next, install `dbt-core` (and its dependencies) with: ```shell make dev target=[postgres|redshift|...] # or -python3 -m pip install --pre dbt-core dbt-[postgres|redshift|...] +python3 -m pip install dbt-core dbt-[postgres|redshift|...] ``` Or more specific: @@ -97,12 +97,9 @@ Or more specific: ```shell make dev target=postgres # or -python3 -m pip install --pre dbt-core dbt-postgres +python3 -m pip install dbt-core dbt-postgres ``` -> [!NOTE] -> The `--pre` flag tells pip to install the latest pre-release version of whatever you pass to install. This ensures you're always using the latest version of dbt, so if your code interacts with dbt in a way that causes issues or test failures, we'll know about it ahead of a release. - Make sure to reload your virtual environment after installing the dependencies: ```shell