metaflow 2.13.1__py2.py3-none-any.whl → 2.13.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.
@@ -38,7 +38,7 @@ class TestEditableCard(MetaflowCard):
38
38
 
39
39
  ALLOW_USER_COMPONENTS = True
40
40
 
41
- def __init__(self, options={}, components=[], graph=None):
41
+ def __init__(self, components=[], **kwargs):
42
42
  self._components = components
43
43
 
44
44
  def render(self, task):
@@ -52,7 +52,7 @@ class TestEditableCard2(MetaflowCard):
52
52
 
53
53
  ALLOW_USER_COMPONENTS = True
54
54
 
55
- def __init__(self, options={}, components=[], graph=None):
55
+ def __init__(self, components=[], **kwargs):
56
56
  self._components = components
57
57
 
58
58
  def render(self, task):
@@ -64,7 +64,7 @@ class TestNonEditableCard(MetaflowCard):
64
64
 
65
65
  seperator = "$&#!!@*"
66
66
 
67
- def __init__(self, options={}, components=[], graph=None):
67
+ def __init__(self, components=[], **kwargs):
68
68
  self._components = components
69
69
 
70
70
  def render(self, task):
@@ -193,7 +193,7 @@ class TestRefreshComponentCard(MetaflowCard):
193
193
 
194
194
  type = "test_component_refresh_card"
195
195
 
196
- def __init__(self, options={}, components=[], graph=None):
196
+ def __init__(self, components=[], **kwargs):
197
197
  self._components = components
198
198
 
199
199
  def render(self, task) -> str:
@@ -1,8 +1,8 @@
1
1
  from .card_modules import MetaflowCardComponent
2
+ from .card_modules.card import create_component_id
2
3
  from .card_modules.basic import ErrorComponent, SectionComponent
3
4
  from .card_modules.components import (
4
5
  UserComponent,
5
- create_component_id,
6
6
  StubComponent,
7
7
  )
8
8
  from .exception import ComponentOverwriteNotSupportedException
@@ -1,6 +1,7 @@
1
1
  import functools
2
2
  import json
3
3
  import os
4
+ import re
4
5
  import subprocess
5
6
  import tempfile
6
7
  import time
@@ -23,6 +24,8 @@ class MicromambaException(MetaflowException):
23
24
 
24
25
  GLIBC_VERSION = os.environ.get("CONDA_OVERRIDE_GLIBC", "2.38")
25
26
 
27
+ _double_equal_match = re.compile("==(?=[<=>!~])")
28
+
26
29
 
27
30
  class Micromamba(object):
28
31
  def __init__(self, logger=None):
@@ -101,7 +104,8 @@ class Micromamba(object):
101
104
  cmd.append("--channel=%s" % channel)
102
105
 
103
106
  for package, version in packages.items():
104
- cmd.append("%s==%s" % (package, version))
107
+ version_string = "%s==%s" % (package, version)
108
+ cmd.append(_double_equal_match.sub("", version_string))
105
109
  if python:
106
110
  cmd.append("python==%s" % python)
107
111
  # TODO: Ensure a human readable message is returned when the environment
@@ -7,6 +7,8 @@ from typing import Dict, Iterator, Optional, Tuple
7
7
 
8
8
  from metaflow import Run
9
9
 
10
+ from metaflow.plugins import get_runner_cli
11
+
10
12
  from .utils import (
11
13
  temporary_fifo,
12
14
  handle_timeout,
@@ -187,7 +189,27 @@ class ExecutingRun(object):
187
189
  yield position, line
188
190
 
189
191
 
190
- class Runner(object):
192
+ class RunnerMeta(type):
193
+ def __new__(mcs, name, bases, dct):
194
+ cls = super().__new__(mcs, name, bases, dct)
195
+
196
+ def _injected_method(subcommand_name, runner_subcommand):
197
+ def f(self, *args, **kwargs):
198
+ return runner_subcommand(self, *args, **kwargs)
199
+
200
+ f.__doc__ = runner_subcommand.__doc__ or ""
201
+ f.__name__ = subcommand_name
202
+
203
+ return f
204
+
205
+ for runner_subcommand in get_runner_cli():
206
+ method_name = runner_subcommand.name.replace("-", "_")
207
+ setattr(cls, method_name, _injected_method(method_name, runner_subcommand))
208
+
209
+ return cls
210
+
211
+
212
+ class Runner(metaclass=RunnerMeta):
191
213
  """
192
214
  Metaflow's Runner API that presents a programmatic interface
193
215
  to run flows and perform other operations either synchronously or asynchronously.
@@ -337,7 +359,7 @@ class Runner(object):
337
359
 
338
360
  return self.__get_executing_run(attribute_file_fd, command_obj)
339
361
 
340
- def resume(self, **kwargs):
362
+ def resume(self, **kwargs) -> ExecutingRun:
341
363
  """
342
364
  Blocking resume execution of the run.
343
365
  This method will wait until the resumed run has completed execution.
@@ -400,7 +422,7 @@ class Runner(object):
400
422
 
401
423
  return await self.__async_get_executing_run(attribute_file_fd, command_obj)
402
424
 
403
- async def async_resume(self, **kwargs):
425
+ async def async_resume(self, **kwargs) -> ExecutingRun:
404
426
  """
405
427
  Non-blocking resume execution of the run.
406
428
  This method will return as soon as the resume has launched.
metaflow/runtime.py CHANGED
@@ -125,7 +125,7 @@ class NativeRuntime(object):
125
125
  self._clone_run_id = clone_run_id
126
126
  self._clone_only = clone_only
127
127
  self._cloned_tasks = []
128
- self._cloned_task_index = set()
128
+ self._ran_or_scheduled_task_index = set()
129
129
  self._reentrant = reentrant
130
130
  self._run_url = None
131
131
 
@@ -297,7 +297,7 @@ class NativeRuntime(object):
297
297
  task.ubf_context = ubf_context
298
298
  new_task_id = task.task_id
299
299
  self._cloned_tasks.append(task)
300
- self._cloned_task_index.add(cloned_task_pathspec_index)
300
+ self._ran_or_scheduled_task_index.add(cloned_task_pathspec_index)
301
301
  task_pathspec = "{}/{}/{}".format(self._run_id, step_name, new_task_id)
302
302
  else:
303
303
  task_pathspec = "{}/{}/{}".format(self._run_id, step_name, new_task_id)
@@ -384,8 +384,10 @@ class NativeRuntime(object):
384
384
  and step_name != "_parameters"
385
385
  and (step_name not in self._steps_to_rerun)
386
386
  ):
387
- # "_unbounded_foreach" is a special flag to indicate that the transition is an unbounded foreach.
388
- # Both parent and splitted children tasks will have this flag set. The splitted control/mapper tasks
387
+ # "_unbounded_foreach" is a special flag to indicate that the transition
388
+ # is an unbounded foreach.
389
+ # Both parent and splitted children tasks will have this flag set.
390
+ # The splitted control/mapper tasks
389
391
  # are not foreach types because UBF is always followed by a join step.
390
392
  is_ubf_task = (
391
393
  "_unbounded_foreach" in task_ds and task_ds["_unbounded_foreach"]
@@ -647,10 +649,18 @@ class NativeRuntime(object):
647
649
  # Store the parameters needed for task creation, so that pushing on items
648
650
  # onto the run_queue is an inexpensive operation.
649
651
  def _queue_push(self, step, task_kwargs, index=None):
650
- # If the to-be-pushed task is already cloned before, we don't need
651
- # to re-run it.
652
- if index and index in self._cloned_task_index:
653
- return
652
+ # In the case of cloning, we set all the cloned tasks as the
653
+ # finished tasks when pushing tasks using _queue_tasks. This means that we
654
+ # could potentially try to push the same task multiple times (for example
655
+ # if multiple parents of a join are cloned). We therefore keep track of what
656
+ # has executed (been cloned) or what has been scheduled and avoid scheduling
657
+ # it again.
658
+ if index:
659
+ if index in self._ran_or_scheduled_task_index:
660
+ # It has already run or been scheduled
661
+ return
662
+ # Note that we are scheduling this to run
663
+ self._ran_or_scheduled_task_index.add(index)
654
664
  self._run_queue.insert(0, (step, task_kwargs))
655
665
  # For foreaches, this will happen multiple time but is ok, becomes a no-op
656
666
  self._unprocessed_steps.discard(step)
@@ -183,7 +183,7 @@ class DelayEvaluator(collections.abc.Mapping):
183
183
 
184
184
  def __getattr__(self, name):
185
185
  if self._access is None:
186
- raise AttributeError()
186
+ raise AttributeError(name)
187
187
  self._access.append(name)
188
188
  return self
189
189
 
@@ -336,6 +336,8 @@ class Config(Parameter, collections.abc.Mapping):
336
336
  self.parser = parser
337
337
  self._computed_value = None
338
338
 
339
+ self._delayed_evaluator = None
340
+
339
341
  def load_parameter(self, v):
340
342
  if v is None:
341
343
  return None
@@ -344,22 +346,37 @@ class Config(Parameter, collections.abc.Mapping):
344
346
  def _store_value(self, v: Any) -> None:
345
347
  self._computed_value = v
346
348
 
349
+ def _init_delayed_evaluator(self) -> None:
350
+ if self._delayed_evaluator is None:
351
+ self._delayed_evaluator = DelayEvaluator(self.name.lower())
352
+
347
353
  # Support <config>.<var> syntax
348
354
  def __getattr__(self, name):
349
- return DelayEvaluator(self.name.lower()).__getattr__(name)
355
+ # Need to return a new DelayEvaluator everytime because the evaluator will
356
+ # contain the "path" (ie: .name) and can be further accessed.
357
+ return getattr(DelayEvaluator(self.name.lower()), name)
350
358
 
351
- # Next three methods are to implement mapping to support **<config> syntax
359
+ # Next three methods are to implement mapping to support **<config> syntax. We
360
+ # need to be careful, however, to also support a regular `config["key"]` syntax
361
+ # which calls into `__getitem__` and therefore behaves like __getattr__ above.
352
362
  def __iter__(self):
353
- return iter(DelayEvaluator(self.name.lower()))
363
+ self._init_delayed_evaluator()
364
+ yield from self._delayed_evaluator
354
365
 
355
366
  def __len__(self):
356
- return len(DelayEvaluator(self.name.lower()))
367
+ self._init_delayed_evaluator()
368
+ return len(self._delayed_evaluator)
357
369
 
358
370
  def __getitem__(self, key):
371
+ self._init_delayed_evaluator()
372
+ if key.startswith(UNPACK_KEY):
373
+ return self._delayed_evaluator[key]
359
374
  return DelayEvaluator(self.name.lower())[key]
360
375
 
361
376
 
362
377
  def resolve_delayed_evaluator(v: Any, ignore_errors: bool = False) -> Any:
378
+ # NOTE: We don't ignore errors in downstream calls because we want to have either
379
+ # all or nothing for the top-level call by the user.
363
380
  try:
364
381
  if isinstance(v, DelayEvaluator):
365
382
  return v()
@@ -397,7 +414,7 @@ def unpack_delayed_evaluator(
397
414
  else:
398
415
  # k.startswith(UNPACK_KEY)
399
416
  try:
400
- result.update(resolve_delayed_evaluator(v[k]))
417
+ result.update(resolve_delayed_evaluator(v))
401
418
  except Exception as e:
402
419
  if ignore_errors:
403
420
  continue
metaflow/version.py CHANGED
@@ -1 +1 @@
1
- metaflow_version = "2.13.1"
1
+ metaflow_version = "2.13.3"
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: metaflow
3
- Version: 2.13.1
3
+ Version: 2.13.3
4
4
  Summary: Metaflow: More Data Science, Less Engineering
5
5
  Author: Metaflow Developers
6
6
  Author-email: help@metaflow.org
@@ -26,7 +26,17 @@ License-File: LICENSE
26
26
  Requires-Dist: requests
27
27
  Requires-Dist: boto3
28
28
  Provides-Extra: stubs
29
- Requires-Dist: metaflow-stubs==2.13.1; extra == "stubs"
29
+ Requires-Dist: metaflow-stubs==2.13.3; extra == "stubs"
30
+ Dynamic: author
31
+ Dynamic: author-email
32
+ Dynamic: classifier
33
+ Dynamic: description
34
+ Dynamic: description-content-type
35
+ Dynamic: license
36
+ Dynamic: project-url
37
+ Dynamic: provides-extra
38
+ Dynamic: requires-dist
39
+ Dynamic: summary
30
40
 
31
41
  ![Metaflow_Logo_Horizontal_FullColor_Ribbon_Dark_RGB](https://user-images.githubusercontent.com/763451/89453116-96a57e00-d713-11ea-9fa6-82b29d4d6eff.png)
32
42
 
@@ -1,6 +1,6 @@
1
1
  metaflow/R.py,sha256=CqVfIatvmjciuICNnoyyNGrwE7Va9iXfLdFbQa52hwA,3958
2
2
  metaflow/__init__.py,sha256=fbhdWiWnEoAX4KnzRHMY_iQcT-uYlMWhzrXPKvK0i5g,5832
3
- metaflow/cards.py,sha256=tP1_RrtmqdFh741pqE4t98S7SA0MtGRlGvRICRZF1Mg,426
3
+ metaflow/cards.py,sha256=IbRmredvmFEU0V6JL7DR8wCESwVmmZJubr6x24bo7U4,442
4
4
  metaflow/cli.py,sha256=IfUZd9fiUrT_MaSUnahmdPXK81DB06NNhUO2aXe0_PI,21600
5
5
  metaflow/cli_args.py,sha256=muIh9pdVqMRG09uAYFKcAcUKFyDE4N3Wm6YahWRaUNI,3594
6
6
  metaflow/clone_util.py,sha256=LSuVbFpPUh92UW32DBcnZbL0FFw-4w3CLa0tpEbCkzk,2066
@@ -25,18 +25,18 @@ metaflow/metaflow_version.py,sha256=duhIzfKZtcxMVMs2uiBqBvUarSHJqyWDwMhaBOQd_g0,
25
25
  metaflow/monitor.py,sha256=T0NMaBPvXynlJAO_avKtk8OIIRMyEuMAyF8bIp79aZU,5323
26
26
  metaflow/multicore_utils.py,sha256=yEo5T6Gemn4_vl8b6IOz7fsTUYtEyqa3AaKZgJY96Wc,4974
27
27
  metaflow/package.py,sha256=yfwVMVB1mD-Sw94KwXNK3N-26YHoKMn6btrcgd67Izs,7845
28
- metaflow/parameters.py,sha256=UVnRakZ-LHsc0ZFbDKNcLMZSWBvP-Ylw7P1_YjBHjDA,18595
28
+ metaflow/parameters.py,sha256=3mCV8d-Bj7n2sByl0pN3hRVLXvYnSL9c53_wxWGSwG8,18596
29
29
  metaflow/procpoll.py,sha256=U2tE4iK_Mwj2WDyVTx_Uglh6xZ-jixQOo4wrM9OOhxg,2859
30
30
  metaflow/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31
31
  metaflow/pylint_wrapper.py,sha256=zzBY9YaSUZOGH-ypDKAv2B_7XcoyMZj-zCoCrmYqNRc,2865
32
- metaflow/runtime.py,sha256=ISkkrjK4WXHaWywDEO_Po71ECLDCW4T0pqMFvgYkVrM,73857
32
+ metaflow/runtime.py,sha256=Hz2U19XwCUgUf07YKzQsqXuqZTC8P2NvyTwZW_hSXrs,74430
33
33
  metaflow/tagging_util.py,sha256=ctyf0Q1gBi0RyZX6J0e9DQGNkNHblV_CITfy66axXB4,2346
34
34
  metaflow/task.py,sha256=xVVLWy8NH16OlLu2VoOb1OfiFzcOVVCdQldlmb1Zb_w,29691
35
35
  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=hKjHl6NYJkKBSU2tzdVbddfOX1zWK73T4GCO42A0XB4,14666
38
38
  metaflow/vendor.py,sha256=FchtA9tH22JM-eEtJ2c9FpUdMn8sSb1VHuQS56EcdZk,5139
39
- metaflow/version.py,sha256=-WYqXIqtitaLCU4E6qut6c9z10BnV1o-zeTM3vpABxg,28
39
+ metaflow/version.py,sha256=vTW1Ih7wy7uSI7lhDQCu5vyGmRMRnjva76buvTQFNsQ,28
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
@@ -139,7 +139,7 @@ metaflow/extension_support/__init__.py,sha256=2z0c4R8zsVmEFOMGT2Jujsl6xveDVa9KLl
139
139
  metaflow/extension_support/_empty_file.py,sha256=HENjnM4uAfeNygxMB_feCCWORFoSat9n_QwzSx2oXPw,109
140
140
  metaflow/extension_support/cmd.py,sha256=hk8iBUUINqvKCDxInKgWpum8ThiRZtHSJP7qBASHzl8,5711
141
141
  metaflow/extension_support/integrations.py,sha256=AWAh-AZ-vo9IxuAVEjGw3s8p_NMm2DKHYx10oC51gPU,5506
142
- metaflow/extension_support/plugins.py,sha256=4JbcXOWosSBqXlj1VINI5rSJGSnKx2_u3lN4KQxH-hs,11227
142
+ metaflow/extension_support/plugins.py,sha256=jgpNJU9q7V1vnattuH7LncTZezWk_VC4lS7Qn761h6A,11263
143
143
  metaflow/metadata_provider/__init__.py,sha256=FZNSnz26VB_m18DQG8mup6-Gfl7r1U6lRMljJBp3VAM,64
144
144
  metaflow/metadata_provider/heartbeat.py,sha256=VFGDuO8LryraqsxGVORt6HtyqDUzIYNY50W3DbvR4js,3102
145
145
  metaflow/metadata_provider/metadata.py,sha256=4tmySlgQaoV-p9bHig7BjsEsqFRZWEOuwSLpODuKxjA,26169
@@ -149,7 +149,7 @@ metaflow/mflog/mflog.py,sha256=VebXxqitOtNAs7VJixnNfziO_i_urG7bsJ5JiB5IXgY,4370
149
149
  metaflow/mflog/save_logs.py,sha256=ZBAF4BMukw4FMAC7odpr9OI2BC_2petPtDX0ca6srC4,2352
150
150
  metaflow/mflog/save_logs_periodically.py,sha256=2Uvk9hi-zlCqXxOQoXmmjH1SCugfw6eG6w70WgfI-ho,1256
151
151
  metaflow/mflog/tee.py,sha256=wTER15qeHuiRpCkOqo-bd-r3Gj-EVlf3IvWRCA4beW4,887
152
- metaflow/plugins/__init__.py,sha256=BWwrnLi0MX0LtgmtATGau_FFNKbmJ-BgCJcy-MYsmoQ,7600
152
+ metaflow/plugins/__init__.py,sha256=NXlwhFvhLYhAVhjCyRJZMIpTBBBJlzFupM7MgDKNYv0,7872
153
153
  metaflow/plugins/catch_decorator.py,sha256=UOM2taN_OL2RPpuJhwEOA9ZALm0-hHD0XS2Hn2GUev0,4061
154
154
  metaflow/plugins/debug_logger.py,sha256=mcF5HYzJ0NQmqCMjyVUk3iAP-heroHRIiVWQC6Ha2-I,879
155
155
  metaflow/plugins/debug_monitor.py,sha256=Md5X_sDOSssN9pt2D8YcaIjTK5JaQD55UAYTcF6xYF0,1099
@@ -181,7 +181,7 @@ metaflow/plugins/airflow/sensors/s3_sensor.py,sha256=iDReG-7FKnumrtQg-HY6cCUAAqN
181
181
  metaflow/plugins/argo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
182
182
  metaflow/plugins/argo/argo_client.py,sha256=PS_cYGnPw9h4X7TP_plObDH3clMw4reOsBLkkGPTd0Y,16282
183
183
  metaflow/plugins/argo/argo_events.py,sha256=_C1KWztVqgi3zuH57pInaE9OzABc2NnncC-zdwOMZ-w,5909
184
- metaflow/plugins/argo/argo_workflows.py,sha256=14f1w_vlO4F_WFR1_e-9TDlwKHCUDlP22EsSvG5qMQA,174919
184
+ metaflow/plugins/argo/argo_workflows.py,sha256=CdZoBZU8aSkza1wRw60VogJv9QdF4CLbfD4o8XPAf5o,175510
185
185
  metaflow/plugins/argo/argo_workflows_cli.py,sha256=11_8l4IrtkwviKsijInTZPt7YK5TZzClREnw_Cf4D5o,36706
186
186
  metaflow/plugins/argo/argo_workflows_decorator.py,sha256=ogCSBmwsC2C3eusydrgjuAJd4qK18f1sI4jJwA4Fd-o,7800
187
187
  metaflow/plugins/argo/argo_workflows_deployer.py,sha256=6kHxEnYXJwzNCM9swI8-0AckxtPWqwhZLerYkX8fxUM,4444
@@ -220,25 +220,25 @@ metaflow/plugins/azure/azure_utils.py,sha256=j3kAxi2oC-fMpw8YegJvqsAwxi_m7jGPxCa
220
220
  metaflow/plugins/azure/blob_service_client_factory.py,sha256=MtyPftBxrXdXMxwhKgLepG6mtlb_2BhJLG_fvbO6D14,6527
221
221
  metaflow/plugins/azure/includefile_support.py,sha256=2kBnjR-Rl1cSoZsrgvl3t4tf1qsVqnYk0LJ6ZsSLzTo,4726
222
222
  metaflow/plugins/cards/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
223
- metaflow/plugins/cards/card_cli.py,sha256=LN0B_Bvb7qJxRyvzR2uvRctt5xrC4SqZo0rkQgExQKo,35040
223
+ metaflow/plugins/cards/card_cli.py,sha256=XyiU5f6i_xjFHPyowWGs9mKQm9fm3dK6id-IKsoe9cY,35177
224
224
  metaflow/plugins/cards/card_client.py,sha256=30dFBoC3axc261GeV7QCIs_V1OHhRtS31S0wEWsjw90,9501
225
225
  metaflow/plugins/cards/card_creator.py,sha256=vRz1EUFa4xQ1fUIWzqyACViC6D7KGFaq5XlLIEssXTI,7741
226
226
  metaflow/plugins/cards/card_datastore.py,sha256=3K19wE0CZVvOpuYUytftIYYnHHn3pMZJE87FMD6OYlM,14244
227
227
  metaflow/plugins/cards/card_decorator.py,sha256=bEiHVrlvhbR51Y1qVlQ5WrYCtjZDl5IW9df2JqouBgg,10804
228
228
  metaflow/plugins/cards/card_resolver.py,sha256=bjyujYpGUFbLJNwXNGHlHhL4f-gVdVKebl7XW1vWDtE,717
229
229
  metaflow/plugins/cards/card_server.py,sha256=DHv0RcepaPULWbkDahiEMrU5A281Cfb0DvHLUYd8JsU,11772
230
- metaflow/plugins/cards/component_serializer.py,sha256=Row7c_8_euJcF_I1lWHdgMRj7dvAb69O-jZTmxS9h8k,37223
230
+ metaflow/plugins/cards/component_serializer.py,sha256=gxG5leRVJEzMqRYKs3vIzy2ijFNEI3fX1AzHgfX-D8A,37249
231
231
  metaflow/plugins/cards/exception.py,sha256=2UqlNb-Kxpg6cuLu2sBEIPTIElwlVBsSpeCgDYKTxWg,5222
232
232
  metaflow/plugins/cards/card_modules/__init__.py,sha256=WI2IAsFiKGyqPrHtO9S9-MbyVtUTgWJNL4xjJaBErRo,3437
233
233
  metaflow/plugins/cards/card_modules/base.html,sha256=Y208ZKIZqEWWUcoBFTLTdWKAG0C8xH5lmyCRSjaN2FY,21004
234
- metaflow/plugins/cards/card_modules/basic.py,sha256=QHxbbeUA3iM_cJMOeVxSCqbS5Suf1pwUXlfw__Cyj1Q,24117
234
+ metaflow/plugins/cards/card_modules/basic.py,sha256=oton1WXN59LPB_08_EA9LYgyNQmQjFHlLJuTWDqmHkM,25354
235
235
  metaflow/plugins/cards/card_modules/bundle.css,sha256=ms2wOKftlPM_i6bC_4BkrmqCOj8mYw9OFvRCJF9FSV4,11981
236
- metaflow/plugins/cards/card_modules/card.py,sha256=HspyT4d3VeXq4k3sLRLm0-2k4ScKefHu25EDuYgMtPA,4209
237
- metaflow/plugins/cards/card_modules/components.py,sha256=BBnfB2MwXOkP1pup5vOypxr1pTjpD5Jr9_vCF3vyakU,25417
236
+ metaflow/plugins/cards/card_modules/card.py,sha256=6sbqP5mwf7QWvQvX2N_bC78H9ixuI5sQ8612Q5islys,4627
237
+ metaflow/plugins/cards/card_modules/components.py,sha256=Y-Yo7UgSOyTB3zs-wDfUqUKl0PI_BzeY1QGcy2fqE2M,26752
238
238
  metaflow/plugins/cards/card_modules/convert_to_native_type.py,sha256=eGaQ8BabJ489a8AiyhXFy1pWJZl99gH0FQzwsNVxAGQ,15782
239
- metaflow/plugins/cards/card_modules/main.js,sha256=bcw-hDagN2g38i28pdSY0irAka3t3jhSg-dN5vpuk7M,1027705
239
+ metaflow/plugins/cards/card_modules/main.js,sha256=K_ZO41THtbjZC3hNSQn2rG5UUbubFgkgU6RxBjMmApk,1028430
240
240
  metaflow/plugins/cards/card_modules/renderer_tools.py,sha256=uiTdKHWFInWgtfWArOUSQLnTwqVd4hAw49jfOfg8rGA,1642
241
- metaflow/plugins/cards/card_modules/test_cards.py,sha256=xbHU2tlx0DVwHzFNoRUS8A0UYd5VHU_YgDFBFYS4QCo,5417
241
+ metaflow/plugins/cards/card_modules/test_cards.py,sha256=74H0JdWrcoc5eITxCLSUwwa1kJZ3YMteynaKsCBihXE,5361
242
242
  metaflow/plugins/cards/card_modules/chevron/__init__.py,sha256=SicpH_1eT76HUTA8aMuiGLRNKTqgYD1Qfutt2NdTL0E,156
243
243
  metaflow/plugins/cards/card_modules/chevron/main.py,sha256=FKpDW4PS2dYshgkm6yIxrBnzkhquZ4gg2dmUxrBbNTQ,3222
244
244
  metaflow/plugins/cards/card_modules/chevron/metadata.py,sha256=gQDpB9KezW9Mcv-n9K2Pt1akjiPGG1zYB5YPdQ0FlNc,19
@@ -301,7 +301,7 @@ metaflow/plugins/pypi/__init__.py,sha256=0YFZpXvX7HCkyBFglatual7XGifdA1RwC3U4kci
301
301
  metaflow/plugins/pypi/bootstrap.py,sha256=x7PwFjuRNOwehVmpi5W7-JlTKHZHjwRhz6nImYlMkqo,11678
302
302
  metaflow/plugins/pypi/conda_decorator.py,sha256=piFcE4uGmWhhbGlxMK0GHd7BGEyqy6r9BFy8Mjoi80Q,15937
303
303
  metaflow/plugins/pypi/conda_environment.py,sha256=d5BAiY_aJJdlJ5h3N5nGSDmVoOY-8BVKqEbA5nrCpCY,22113
304
- metaflow/plugins/pypi/micromamba.py,sha256=XbVM7q6EtLwuTyB5aXzSfxd4aFOl7QNrdVRzwKX6MSE,15686
304
+ metaflow/plugins/pypi/micromamba.py,sha256=5YrD3V9FXMaMM0mHdPD5DabBrFLcTrj5sqbeBWl9r7M,15824
305
305
  metaflow/plugins/pypi/pip.py,sha256=H0cIy8odpZ-JTn4SwF0b74tuC3uRU7X8TdAQJ2kODG8,13971
306
306
  metaflow/plugins/pypi/pypi_decorator.py,sha256=ybNgo-T5Z_0W2KNuED0pdjyI0qygZ4a1MXAzKqdHt_E,7250
307
307
  metaflow/plugins/pypi/pypi_environment.py,sha256=FYMg8kF3lXqcLfRYWD83a9zpVjcoo_TARqMGZ763rRk,230
@@ -313,7 +313,7 @@ metaflow/runner/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
313
313
  metaflow/runner/click_api.py,sha256=13CM3RsH3dJ6YJTQnNafLEZ_teTnYMyfoR2Cf5baVbM,21772
314
314
  metaflow/runner/deployer.py,sha256=Yas_SZCss3kfJw3hLC8_IyzgiytUFGoEGHz-l-rBBKk,8980
315
315
  metaflow/runner/deployer_impl.py,sha256=nzQJiJxjgZxewkkK5pHshfVeZOUUf5-FzS0pPJimktM,5930
316
- metaflow/runner/metaflow_runner.py,sha256=GS-12UwxiIUByMoIMG3gAROxC2ShZEtS1dOSpWEaP8Y,15131
316
+ metaflow/runner/metaflow_runner.py,sha256=T41AWkuQq56ID90B7I-RFr9zexuZYtknsstSoqell7A,15861
317
317
  metaflow/runner/nbdeploy.py,sha256=Sp5w-6nCZwjHaRBHWxi8udya-RYnJOB76KNLjB4L7Gs,4166
318
318
  metaflow/runner/nbrun.py,sha256=LhJu-Teoi7wTkNxg0kpNPVXFxH_9P4lvtp0ysMEIFJ8,7299
319
319
  metaflow/runner/subprocess_manager.py,sha256=K6uZXnqdgeW0vHUAVwoolSpDSLp1EVHiBtyD7f_vwac,22050
@@ -357,10 +357,10 @@ metaflow/tutorials/08-autopilot/autopilot.ipynb,sha256=DQoJlILV7Mq9vfPBGW-QV_kNh
357
357
  metaflow/user_configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
358
358
  metaflow/user_configs/config_decorators.py,sha256=Tj0H88UT8Q6pylXxHXgiA6cqnNlw4d3mR7M8J9g3ZUg,20139
359
359
  metaflow/user_configs/config_options.py,sha256=Knpiax_YGmYAdR3zKmaepN8puW1MyL9g6-eMGAkcylo,20942
360
- metaflow/user_configs/config_parameters.py,sha256=yDiaajJGP-9W_tA_6hVuw8HDF8n5zJBccCjcrTGOYDE,13912
361
- metaflow-2.13.1.dist-info/LICENSE,sha256=nl_Lt5v9VvJ-5lWJDT4ddKAG-VZ-2IaLmbzpgYDz2hU,11343
362
- metaflow-2.13.1.dist-info/METADATA,sha256=dPPzZLYrVeW5jiCDUQUcagEZLiKaOAG-7CnT8_mJDZs,5906
363
- metaflow-2.13.1.dist-info/WHEEL,sha256=M1ikteR9eetPNvm1LyQ3rpXxNYuGd90oakQO1a-ohSk,109
364
- metaflow-2.13.1.dist-info/entry_points.txt,sha256=IKwTN1T3I5eJL3uo_vnkyxVffcgnRdFbKwlghZfn27k,57
365
- metaflow-2.13.1.dist-info/top_level.txt,sha256=v1pDHoWaSaKeuc5fKTRSfsXCKSdW1zvNVmvA-i0if3o,9
366
- metaflow-2.13.1.dist-info/RECORD,,
360
+ metaflow/user_configs/config_parameters.py,sha256=lWWqJ5BSvCEZIL_JTmy9sYmmyPhgh7wj6Zy_U9TRSFQ,14763
361
+ metaflow-2.13.3.dist-info/LICENSE,sha256=nl_Lt5v9VvJ-5lWJDT4ddKAG-VZ-2IaLmbzpgYDz2hU,11343
362
+ metaflow-2.13.3.dist-info/METADATA,sha256=pWisXiUY5xDzvsAWZa5jyaDBAzWkyOFXZ3m8lDpEz-g,6121
363
+ metaflow-2.13.3.dist-info/WHEEL,sha256=9Hm2OB-j1QcCUq9Jguht7ayGIIZBRTdOXD1qg9cCgPM,109
364
+ metaflow-2.13.3.dist-info/entry_points.txt,sha256=IKwTN1T3I5eJL3uo_vnkyxVffcgnRdFbKwlghZfn27k,57
365
+ metaflow-2.13.3.dist-info/top_level.txt,sha256=v1pDHoWaSaKeuc5fKTRSfsXCKSdW1zvNVmvA-i0if3o,9
366
+ metaflow-2.13.3.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.7.0)
2
+ Generator: setuptools (75.8.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py2-none-any
5
5
  Tag: py3-none-any