Skip to content

Commit d8d653f

Browse files
Chore: Fix dbt 1.3 installation script (#5705)
1 parent 67d5894 commit d8d653f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@ install-dev-dbt-%:
5959
echo "Applying overrides for dbt 1.5.0"; \
6060
$(PIP) install 'dbt-databricks==1.5.6' 'numpy<2' --reinstall; \
6161
fi; \
62+
if [ "$$version" = "1.3.0" ]; then \
63+
echo "Applying overrides for dbt $$version - upgrading google-cloud-bigquery"; \
64+
$(PIP) install 'google-cloud-bigquery>=3.0.0' --upgrade; \
65+
fi; \
6266
mv pyproject.toml.backup pyproject.toml; \
6367
echo "Restored original pyproject.toml"
6468

0 commit comments

Comments
 (0)