-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade dbt-metabase Package in Warehouse to Version That Supports Cu…
…rrent Metabase Version (#3279)
- Loading branch information
1 parent
037ede4
commit bea49e1
Showing
2 changed files
with
10 additions
and
9 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "calitp_warehouse" | ||
version = "0.1.0" | ||
version = "0.1.1" | ||
description = "" | ||
authors = ["Andrew Vaccaro <[email protected]>"] | ||
|
||
|
@@ -21,13 +21,14 @@ python-slugify = "^6.1.2" | |
sentry-sdk = "^1.9.8" | ||
backoff = "^2.2.1" | ||
gcsfs = "^2023.1.0" | ||
dbt-metabase = "^0.9.14" | ||
# should migrate to 1.x soon; 0.10.3 appears to be the end of the line for pre-1.0 | ||
dbt-metabase = "^0.10.3" | ||
networkx = {version = "<3", extras = ["default"]} | ||
# from https://github.com/pygraphviz/pygraphviz/issues/398#issuecomment-1450367670 | ||
# May need to run these after `brew install graphviz` when installing on macOS | ||
# export CFLAGS="-I $(brew --prefix graphviz)/include" | ||
# export LDFLAGS="-L $(brew --prefix graphviz)/lib" | ||
pygraphviz = "^1.10" | ||
pygraphviz = "^1.11" | ||
palettable = "^3.3.0" | ||
metabase-api = "^0.3.0" | ||
# fiona 1.9 requires gdal 3 which ubuntu does not install yet | ||
|