Skip to content

Commit

Permalink
remove pinned dependency of dbt-core==1.0.1 in setup.py (#8)
Browse files Browse the repository at this point in the history
Testplan:
 1. Update dbt-core dependency to 1.0.4 (pip3 install --upgrade dbt-core), the current release version
 2. From a dbt_demo project (https://github.infra.cloudera.com/abrown/dbt_demo) check:
      dbt debug (connection)
      dbt seed (seeds)
      dbt run (models)
      dbt docs generate (generate docs)
      dbt docs serve (start a browser with generated docs)
 3. All commands should execute without error
 4. Optional:
      dbt tests (this will check if dbt tests is running)
  • Loading branch information
tovganesh authored Apr 1, 2022
1 parent 24b8e32 commit f80cacb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
packages=find_namespace_packages(include=['dbt', 'dbt.*']),
include_package_data=True,
install_requires=[
"dbt-core==1.0.1",
"dbt-core~=1.0.1",
"impyla"
],
classifiers=[
Expand Down

0 comments on commit f80cacb

Please sign in to comment.