fabricks 3.0.13__py3-none-any.whl → 3.0.14__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
fabricks/context/helpers.py
CHANGED
|
@@ -8,9 +8,14 @@ from fabricks.utils.path import Path
|
|
|
8
8
|
def get_config_from_file():
|
|
9
9
|
path = pathlib.Path(os.getcwd())
|
|
10
10
|
|
|
11
|
-
while path is not None
|
|
11
|
+
while path is not None:
|
|
12
|
+
if (path / "fabricksconfig.json").exists():
|
|
13
|
+
break
|
|
14
|
+
if (path / "pyproject.toml").exists():
|
|
15
|
+
break
|
|
12
16
|
if path == path.parent:
|
|
13
17
|
break
|
|
18
|
+
|
|
14
19
|
path = path.parent
|
|
15
20
|
|
|
16
21
|
if (path / "fabricksconfig.json").exists():
|
|
@@ -70,7 +70,7 @@ fabricks/cdc/templates/queries/nocdc/update.sql.jinja,sha256=mjNUwGVhZ08yUkdv9sC
|
|
|
70
70
|
fabricks/context/__init__.py,sha256=qfntJ9O6omzY_t6AhDP6Ndu9C5LMiVdWbo6ikhtoe7o,1446
|
|
71
71
|
fabricks/context/_types.py,sha256=FzQJ35vp0uc6pAq18bc-VHwMVEWtd0VDdm8xQmNr2Sg,2681
|
|
72
72
|
fabricks/context/config.py,sha256=EmLUnswuWfrncaNJMDjvdMg-1lD8aneKAY8IDna7VPE,4814
|
|
73
|
-
fabricks/context/helpers.py,sha256=
|
|
73
|
+
fabricks/context/helpers.py,sha256=PekG7VT01GlC7fURT-JUCT1CbyRrgPuKnrT5-gauQ-Y,1608
|
|
74
74
|
fabricks/context/log.py,sha256=CadrRf8iL6iXlGIGIhEIswa7wGqC-E-oLwWcGTyJ10s,2074
|
|
75
75
|
fabricks/context/runtime.py,sha256=87PtX6SqLoFd0PGxgisF6dLlxtCHaHxkMMIt34UyB2w,3479
|
|
76
76
|
fabricks/context/secret.py,sha256=iRM-KU-JcJAEOLoGJ8S4Oh65-yt674W6CDTSkOE7SXw,3192
|
|
@@ -171,6 +171,6 @@ fabricks/utils/schema/get_schema_for_type.py,sha256=5k-R6zCgUAtapQgxT4turcx1IQ-b
|
|
|
171
171
|
fabricks/utils/write/__init__.py,sha256=i0UnZenXj9Aq0b0_aU3s6882vg-Vu_AyKfQhl_dTp-g,200
|
|
172
172
|
fabricks/utils/write/delta.py,sha256=lTQ0CfUhcvn3xTCcT_Ns6PMDBsO5UEfa2S9XpJiLJ9c,1250
|
|
173
173
|
fabricks/utils/write/stream.py,sha256=wQBpAnQtYA6nl79sPKhVM6u5m-66suX7B6VQ6tW4TOs,622
|
|
174
|
-
fabricks-3.0.
|
|
175
|
-
fabricks-3.0.
|
|
176
|
-
fabricks-3.0.
|
|
174
|
+
fabricks-3.0.14.dist-info/METADATA,sha256=g8zxaKKHnJIJPtbMGYqicViqA9vFlVJArB86sgWyxps,798
|
|
175
|
+
fabricks-3.0.14.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
176
|
+
fabricks-3.0.14.dist-info/RECORD,,
|
|
File without changes
|