Skip to content

Commit 37b641e

Browse files
authored
Merge pull request #356 from l-j/bugfix/install-correct-version-of-the-dbt-core
bugfix: Install a correct version of `dbt-core` that is compatible with the library
2 parents 73537af + a49824d commit 37b641e

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
### v1.3.2
4+
5+
#### Fixes
6+
7+
* Install a correct version of `dbt-core` that is compatible with the library
8+
9+
310
### v1.3.0
411

512
#### Features
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = "1.3.1"
1+
version = "1.3.2"

dev_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ twine==4.0.2
33
wheel==0.38.4
44
pre-commit==2.20.0
55
pytest-dotenv==0.5.2
6-
dbt-tests-adapter==1.3.1
6+
dbt-tests-adapter~=1.3.4
77
-e .

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def run(self):
6666
packages=find_namespace_packages(include=["dbt", "dbt.*"]),
6767
include_package_data=True,
6868
install_requires=[
69-
"dbt-core>=1.3.0",
69+
"dbt-core~=1.3.4",
7070
"pyodbc>=4.0.32,!=4.0.34",
7171
"azure-identity>=1.10.0",
7272
],

0 commit comments

Comments
 (0)