Skip to content

Commit adbdc73

Browse files
Merge pull request #129 from dbt-labs/limiting_dbt_version
Updating required dbt version to just 1.3
2 parents 2813201 + 2a01b11 commit adbdc73

2 files changed

Lines changed: 20 additions & 13 deletions

File tree

dbt_project.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ seed-paths: ["seeds"]
1919
macro-paths: ["macros"]
2020
snapshot-paths: ["snapshots"]
2121

22-
require-dbt-version: [">=1.3.0-b1", "<2.0.0"]
22+
require-dbt-version: [">=1.3.0-b1", "<1.4.0"]
2323

2424
target-path: "target" # directory which will store compiled SQL files
2525
clean-targets: # directories to be removed by `dbt clean`
2626
- "target"
27-
- "dbt_packages"
27+
- "dbt_packages"

dev-requirements.txt

Lines changed: 18 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,23 @@ pytest
22
pytest-dotenv
33

44
# Bleeding edge
5-
git+https://github.com/dbt-labs/dbt-core.git@main#egg=dbt-tests-adapter&subdirectory=tests/adapter
6-
git+https://github.com/dbt-labs/dbt-core.git@main#egg=dbt-core&subdirectory=core
7-
git+https://github.com/dbt-labs/dbt-core.git@main#egg=dbt-postgres&subdirectory=plugins/postgres
8-
git+https://github.com/dbt-labs/dbt-redshift.git
9-
git+https://github.com/dbt-labs/dbt-snowflake.git
10-
git+https://github.com/dbt-labs/dbt-bigquery.git
5+
# git+https://github.com/dbt-labs/dbt-core.git@main#egg=dbt-tests-adapter&subdirectory=tests/adapter
6+
# git+https://github.com/dbt-labs/dbt-core.git@main#egg=dbt-core&subdirectory=core
7+
# git+https://github.com/dbt-labs/dbt-core.git@main#egg=dbt-postgres&subdirectory=plugins/postgres
8+
# git+https://github.com/dbt-labs/dbt-redshift.git
9+
# git+https://github.com/dbt-labs/dbt-snowflake.git
10+
# git+https://github.com/dbt-labs/dbt-bigquery.git
1111

1212
# Most recent release candidates
13-
# dbt-tests-adapter==1.2.0
14-
# dbt-core==1.2.0
15-
# dbt-redshift==1.2.0
16-
# dbt-snowflake==1.2.0
17-
# dbt-bigquery==1.2.0
13+
dbt-tests-adapter==1.3.0rc2
14+
dbt-core==1.3.0rc2
15+
dbt-redshift==1.3.0rc2
16+
dbt-snowflake==1.3.0rc2
17+
dbt-bigquery==1.3.0rc2
18+
19+
# Most recent stable release
20+
# dbt-tests-adapter==1.3.0
21+
# dbt-core==1.3.0
22+
# dbt-redshift==1.3.0
23+
# dbt-snowflake==1.3.0
24+
# dbt-bigquery==1.3.0

0 commit comments

Comments
 (0)