Skip to content

Commit

Permalink
Merge pull request #356 from l-j/bugfix/install-correct-version-of-th…
Browse files Browse the repository at this point in the history
…e-dbt-core

bugfix: Install a correct version of `dbt-core` that is compatible with the library
  • Loading branch information
sdebruyn committed May 12, 2023
2 parents 73537af + a49824d commit 37b641e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

### v1.3.2

#### Fixes

* Install a correct version of `dbt-core` that is compatible with the library


### v1.3.0

#### Features
Expand Down
2 changes: 1 addition & 1 deletion dbt/adapters/sqlserver/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "1.3.1"
version = "1.3.2"
2 changes: 1 addition & 1 deletion dev_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ twine==4.0.2
wheel==0.38.4
pre-commit==2.20.0
pytest-dotenv==0.5.2
dbt-tests-adapter==1.3.1
dbt-tests-adapter~=1.3.4
-e .
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def run(self):
packages=find_namespace_packages(include=["dbt", "dbt.*"]),
include_package_data=True,
install_requires=[
"dbt-core>=1.3.0",
"dbt-core~=1.3.4",
"pyodbc>=4.0.32,!=4.0.34",
"azure-identity>=1.10.0",
],
Expand Down

0 comments on commit 37b641e

Please sign in to comment.