Skip to content

Commit 4f12290

Browse files
committed
fix(ingest): pin lookml liquid dep
1 parent eb1cd7f commit 4f12290

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

metadata-ingestion/setup.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,11 @@
185185
"lkml>=1.3.4",
186186
*sqlglot_lib,
187187
"GitPython>2",
188-
"python-liquid",
188+
# python-liquid 2 includes a bunch of breaking changes.
189+
# See https://jg-rp.github.io/liquid/migration/
190+
# Eventually we should fully upgrade to v2, but that will require
191+
# us to drop Python 3.8 support first.
192+
"python-liquid<2",
189193
"deepmerge>=1.1.1",
190194
}
191195

@@ -712,7 +716,7 @@
712716
"mariadb",
713717
"redash",
714718
"vertica",
715-
"vertexai"
719+
"vertexai",
716720
]
717721
if plugin
718722
for dependency in plugins[plugin]

0 commit comments

Comments
 (0)