Skip to content

Commit

Permalink
Add dbt-core as convenience dep
Browse files Browse the repository at this point in the history
  • Loading branch information
damian3031 committed Apr 5, 2024
1 parent e047c61 commit 8c83263
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
7 changes: 7 additions & 0 deletions .changes/unreleased/Dependencies-20240405-122927.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
kind: Dependencies
body: Add `dbt-core` as a dependency to preserve backwards compatibility for installation
time: 2024-04-05T12:29:27.647437+02:00
custom:
Author: damian3031
Issue: "387"
PR: "393"
1 change: 0 additions & 1 deletion dev_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
dbt-core~=1.8.0b1
dbt-tests-adapter~=1.8.0b1
mypy==1.8.0 # patch updates have historically introduced breaking changes
pre-commit~=3.6
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,11 @@ def _dbt_trino_version():
]
},
install_requires=[
"dbt-common>=1.0.0b1,<2.0",
"dbt-adapters>=1.0.0b1,<2.0",
"dbt-common>=1.0.0,<2.0",
"dbt-adapters>=1.0.0,<2.0",
"trino~=0.326",
# add dbt-core to ensure backwards compatibility of installation, this is not a functional dependency
"dbt-core>=1.8.0b2",
],
zip_safe=False,
classifiers=[
Expand Down

0 comments on commit 8c83263

Please sign in to comment.