ob-metaflow 2.12.36.1__py2.py3-none-any.whl → 2.12.36.3__py2.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.
Potentially problematic release.
This version of ob-metaflow might be problematic. Click here for more details.
- metaflow/plugins/argo/argo_workflows.py +3 -3
- metaflow/plugins/kubernetes/kubernetes.py +3 -3
- metaflow/plugins/kubernetes/kubernetes_job.py +3 -3
- metaflow/version.py +1 -1
- {ob_metaflow-2.12.36.1.dist-info → ob_metaflow-2.12.36.3.dist-info}/METADATA +2 -2
- {ob_metaflow-2.12.36.1.dist-info → ob_metaflow-2.12.36.3.dist-info}/RECORD +10 -10
- {ob_metaflow-2.12.36.1.dist-info → ob_metaflow-2.12.36.3.dist-info}/LICENSE +0 -0
- {ob_metaflow-2.12.36.1.dist-info → ob_metaflow-2.12.36.3.dist-info}/WHEEL +0 -0
- {ob_metaflow-2.12.36.1.dist-info → ob_metaflow-2.12.36.3.dist-info}/entry_points.txt +0 -0
- {ob_metaflow-2.12.36.1.dist-info → ob_metaflow-2.12.36.3.dist-info}/top_level.txt +0 -0
|
@@ -1829,7 +1829,7 @@ class ArgoWorkflows(object):
|
|
|
1829
1829
|
|
|
1830
1830
|
# get initial configs
|
|
1831
1831
|
initial_configs = init_config()
|
|
1832
|
-
for entry in ["OBP_PERIMETER", "
|
|
1832
|
+
for entry in ["OBP_PERIMETER", "OBP_INTEGRATIONS_URL"]:
|
|
1833
1833
|
if entry not in initial_configs:
|
|
1834
1834
|
raise ArgoWorkflowsException(
|
|
1835
1835
|
f"{entry} was not found in metaflow config. Please make sure to run `outerbounds configure <...>` command which can be found on the Ourebounds UI or reach out to your Outerbounds support team."
|
|
@@ -1837,8 +1837,8 @@ class ArgoWorkflows(object):
|
|
|
1837
1837
|
|
|
1838
1838
|
additional_obp_configs = {
|
|
1839
1839
|
"OBP_PERIMETER": initial_configs["OBP_PERIMETER"],
|
|
1840
|
-
"
|
|
1841
|
-
"
|
|
1840
|
+
"OBP_INTEGRATIONS_URL": initial_configs[
|
|
1841
|
+
"OBP_INTEGRATIONS_URL"
|
|
1842
1842
|
],
|
|
1843
1843
|
}
|
|
1844
1844
|
|
|
@@ -314,7 +314,7 @@ class Kubernetes(object):
|
|
|
314
314
|
jobset.secret(k)
|
|
315
315
|
|
|
316
316
|
initial_configs = init_config()
|
|
317
|
-
for entry in ["OBP_PERIMETER", "
|
|
317
|
+
for entry in ["OBP_PERIMETER", "OBP_INTEGRATIONS_URL"]:
|
|
318
318
|
if entry not in initial_configs:
|
|
319
319
|
raise KubernetesException(
|
|
320
320
|
f"{entry} was not found in metaflow config. Please make sure to run `outerbounds configure <...>` command which can be found on the Ourebounds UI or reach out to your Outerbounds support team."
|
|
@@ -322,8 +322,8 @@ class Kubernetes(object):
|
|
|
322
322
|
|
|
323
323
|
additional_obp_configs = {
|
|
324
324
|
"OBP_PERIMETER": initial_configs["OBP_PERIMETER"],
|
|
325
|
-
"
|
|
326
|
-
"
|
|
325
|
+
"OBP_INTEGRATIONS_URL": initial_configs[
|
|
326
|
+
"OBP_INTEGRATIONS_URL"
|
|
327
327
|
],
|
|
328
328
|
}
|
|
329
329
|
for k, v in additional_obp_configs.items():
|
|
@@ -84,7 +84,7 @@ class KubernetesJob(object):
|
|
|
84
84
|
self._kwargs["disk"],
|
|
85
85
|
)
|
|
86
86
|
initial_configs = init_config()
|
|
87
|
-
for entry in ["OBP_PERIMETER", "
|
|
87
|
+
for entry in ["OBP_PERIMETER", "OBP_INTEGRATIONS_URL"]:
|
|
88
88
|
if entry not in initial_configs:
|
|
89
89
|
raise KubernetesJobException(
|
|
90
90
|
f"{entry} was not found in metaflow config. Please make sure to run `outerbounds configure <...>` command which can be found on the Ourebounds UI or reach out to your Outerbounds support team."
|
|
@@ -92,8 +92,8 @@ class KubernetesJob(object):
|
|
|
92
92
|
|
|
93
93
|
additional_obp_configs = {
|
|
94
94
|
"OBP_PERIMETER": initial_configs["OBP_PERIMETER"],
|
|
95
|
-
"
|
|
96
|
-
"
|
|
95
|
+
"OBP_INTEGRATIONS_URL": initial_configs[
|
|
96
|
+
"OBP_INTEGRATIONS_URL"
|
|
97
97
|
],
|
|
98
98
|
}
|
|
99
99
|
|
metaflow/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
metaflow_version = "2.12.36.
|
|
1
|
+
metaflow_version = "2.12.36.3"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: ob-metaflow
|
|
3
|
-
Version: 2.12.36.
|
|
3
|
+
Version: 2.12.36.3
|
|
4
4
|
Summary: Metaflow: More Data Science, Less Engineering
|
|
5
5
|
Author: Netflix, Outerbounds & the Metaflow Community
|
|
6
6
|
Author-email: help@outerbounds.co
|
|
@@ -12,7 +12,7 @@ Requires-Dist: boto3
|
|
|
12
12
|
Requires-Dist: pylint
|
|
13
13
|
Requires-Dist: kubernetes
|
|
14
14
|
Provides-Extra: stubs
|
|
15
|
-
Requires-Dist: metaflow-stubs==2.12.36.
|
|
15
|
+
Requires-Dist: metaflow-stubs==2.12.36.3; extra == "stubs"
|
|
16
16
|
|
|
17
17
|

|
|
18
18
|
|
|
@@ -36,7 +36,7 @@ metaflow/tuple_util.py,sha256=_G5YIEhuugwJ_f6rrZoelMFak3DqAR2tt_5CapS1XTY,830
|
|
|
36
36
|
metaflow/unbounded_foreach.py,sha256=p184WMbrMJ3xKYHwewj27ZhRUsSj_kw1jlye5gA9xJk,387
|
|
37
37
|
metaflow/util.py,sha256=w7oylILPaNAjtM8MR8dfUazTVBArV_CKPpqGs4HnowM,13785
|
|
38
38
|
metaflow/vendor.py,sha256=FchtA9tH22JM-eEtJ2c9FpUdMn8sSb1VHuQS56EcdZk,5139
|
|
39
|
-
metaflow/version.py,sha256=
|
|
39
|
+
metaflow/version.py,sha256=0NhePrII3xEzg6O135C4K3ffj_uaaC3vodimmY_ih70,31
|
|
40
40
|
metaflow/_vendor/__init__.py,sha256=y_CiwUD3l4eAKvTVDZeqgVujMy31cAM1qjAB-HfI-9s,353
|
|
41
41
|
metaflow/_vendor/typing_extensions.py,sha256=0nUs5p1A_UrZigrAVBoOEM6TxU37zzPDUtiij1ZwpNc,110417
|
|
42
42
|
metaflow/_vendor/zipp.py,sha256=ajztOH-9I7KA_4wqDYygtHa6xUBVZgFpmZ8FE74HHHI,8425
|
|
@@ -175,7 +175,7 @@ metaflow/plugins/airflow/sensors/s3_sensor.py,sha256=iDReG-7FKnumrtQg-HY6cCUAAqN
|
|
|
175
175
|
metaflow/plugins/argo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
176
176
|
metaflow/plugins/argo/argo_client.py,sha256=Z_A1TO9yw4Y-a8VAlwrFS0BwunWzXpbtik-j_xjcuHE,16303
|
|
177
177
|
metaflow/plugins/argo/argo_events.py,sha256=_C1KWztVqgi3zuH57pInaE9OzABc2NnncC-zdwOMZ-w,5909
|
|
178
|
-
metaflow/plugins/argo/argo_workflows.py,sha256=
|
|
178
|
+
metaflow/plugins/argo/argo_workflows.py,sha256=BcGCTXvkKQ40-rOC6DZSpRyt3xH1nx4_KUmT2EdkYkk,175771
|
|
179
179
|
metaflow/plugins/argo/argo_workflows_cli.py,sha256=NdLwzfBcTsR72qLycZBesR4Pwv48o3Z_v6OfYrZuVEY,36721
|
|
180
180
|
metaflow/plugins/argo/argo_workflows_decorator.py,sha256=QdM1rK9gM-lDhyZldK8WqvFqJDvfJ7i3JPR5Uzaq2as,7887
|
|
181
181
|
metaflow/plugins/argo/argo_workflows_deployer.py,sha256=6kHxEnYXJwzNCM9swI8-0AckxtPWqwhZLerYkX8fxUM,4444
|
|
@@ -282,11 +282,11 @@ metaflow/plugins/gcp/gs_utils.py,sha256=ZmIGFse1qYyvAVrwga23PQUzF6dXEDLLsZ2F-YRm
|
|
|
282
282
|
metaflow/plugins/gcp/includefile_support.py,sha256=OQO0IVWv4ObboL0VqEZwcDOyj9ORLdur66JToxQ84vU,3887
|
|
283
283
|
metaflow/plugins/kubernetes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
284
284
|
metaflow/plugins/kubernetes/kube_utils.py,sha256=CbJRMn-sQyGqG-hKMBBjA6xmw15_DyQmhU8TxNyWqcQ,2124
|
|
285
|
-
metaflow/plugins/kubernetes/kubernetes.py,sha256=
|
|
285
|
+
metaflow/plugins/kubernetes/kubernetes.py,sha256=FO1be38kJq9nLwY3DyoG7tayCW5kHMXI0tirrNxVSyY,32480
|
|
286
286
|
metaflow/plugins/kubernetes/kubernetes_cli.py,sha256=tvxwgBojuiezIUdum95t9fHzDs50q-a-gkPyIApWnCY,13633
|
|
287
287
|
metaflow/plugins/kubernetes/kubernetes_client.py,sha256=tuvXP-QKpdeSmzVolB2R_TaacOr5DIb0j642eKcjsiM,6491
|
|
288
288
|
metaflow/plugins/kubernetes/kubernetes_decorator.py,sha256=nDBUg8fWEGYsu7jOa9geIkdnXcRNonw39mreMnfiDTI,29409
|
|
289
|
-
metaflow/plugins/kubernetes/kubernetes_job.py,sha256=
|
|
289
|
+
metaflow/plugins/kubernetes/kubernetes_job.py,sha256=74_sqrIX0VxM9VaW_tSMsKivqYCTgv_L_Gb2gp3onHE,32923
|
|
290
290
|
metaflow/plugins/kubernetes/kubernetes_jobsets.py,sha256=0SGOfStlh6orXVpF3s6Mu26OFR36eh4dj-sFYwg3HaA,42066
|
|
291
291
|
metaflow/plugins/metadata_providers/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
292
292
|
metaflow/plugins/metadata_providers/local.py,sha256=9UAxe9caN6kU1lkSlIoJbRGgTqsMa62cBTnyMwhqiaA,22446
|
|
@@ -348,9 +348,9 @@ metaflow/tutorials/07-worldview/README.md,sha256=5vQTrFqulJ7rWN6r20dhot9lI2sVj9W
|
|
|
348
348
|
metaflow/tutorials/07-worldview/worldview.ipynb,sha256=ztPZPI9BXxvW1QdS2Tfe7LBuVzvFvv0AToDnsDJhLdE,2237
|
|
349
349
|
metaflow/tutorials/08-autopilot/README.md,sha256=GnePFp_q76jPs991lMUqfIIh5zSorIeWznyiUxzeUVE,1039
|
|
350
350
|
metaflow/tutorials/08-autopilot/autopilot.ipynb,sha256=DQoJlILV7Mq9vfPBGW-QV_kNhWPjS5n6SJLqePjFYLY,3191
|
|
351
|
-
ob_metaflow-2.12.36.
|
|
352
|
-
ob_metaflow-2.12.36.
|
|
353
|
-
ob_metaflow-2.12.36.
|
|
354
|
-
ob_metaflow-2.12.36.
|
|
355
|
-
ob_metaflow-2.12.36.
|
|
356
|
-
ob_metaflow-2.12.36.
|
|
351
|
+
ob_metaflow-2.12.36.3.dist-info/LICENSE,sha256=nl_Lt5v9VvJ-5lWJDT4ddKAG-VZ-2IaLmbzpgYDz2hU,11343
|
|
352
|
+
ob_metaflow-2.12.36.3.dist-info/METADATA,sha256=xx124rCHtfAQDDPS0Y8CH8SapwKn1ZwGmtquClt-TPA,5143
|
|
353
|
+
ob_metaflow-2.12.36.3.dist-info/WHEEL,sha256=pxeNX5JdtCe58PUSYP9upmc7jdRPgvT0Gm9kb1SHlVw,109
|
|
354
|
+
ob_metaflow-2.12.36.3.dist-info/entry_points.txt,sha256=IKwTN1T3I5eJL3uo_vnkyxVffcgnRdFbKwlghZfn27k,57
|
|
355
|
+
ob_metaflow-2.12.36.3.dist-info/top_level.txt,sha256=v1pDHoWaSaKeuc5fKTRSfsXCKSdW1zvNVmvA-i0if3o,9
|
|
356
|
+
ob_metaflow-2.12.36.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|