dv-flow-mgr 1.6.0__py3-none-any.whl → 1.6.14799059072rc0__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.
dv_flow/mgr/__init__.py CHANGED
@@ -32,6 +32,6 @@ from .task_runner import TaskSetRunner
32
32
  from .task_listener_log import TaskListenerLog
33
33
 
34
34
  VERSION="1.6.0"
35
- SUFFIX=""
35
+ SUFFIX="14799059072rc0"
36
36
  __version__="%s%s" % (VERSION, SUFFIX)
37
37
 
@@ -116,7 +116,7 @@ class TaskSetRunner(TaskRunner):
116
116
  for t in active_s:
117
117
  while len(active_task_l) >= self.nproc and t not in done_task_s:
118
118
  # Wait for at least one job to complete
119
- done, pending = await asyncio.wait(at[1] for at in active_task_l)
119
+ done, pending = await asyncio.wait([at[1] for at in active_task_l])
120
120
  self._completeTasks(active_task_l, done_task_s, done, dst_memento)
121
121
 
122
122
  if self.status == 0 and t not in done_task_s:
@@ -163,7 +163,7 @@ class TaskSetRunner(TaskRunner):
163
163
  # Wait for them to all complete
164
164
  while len(active_task_l):
165
165
  # TODO: Shouldn't gather here -- reach to each completion
166
- done, pending = await asyncio.wait(at[1] for at in active_task_l)
166
+ done, pending = await asyncio.wait([at[1] for at in active_task_l])
167
167
  self._completeTasks(active_task_l, done_task_s, done, dst_memento)
168
168
 
169
169
  if self.status != 0:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dv-flow-mgr
3
- Version: 1.6.0
3
+ Version: 1.6.14799059072rc0
4
4
  Summary: DV Flow Manager is a build system for silicon design
5
5
  Author-email: Matthew Ballance <matt.ballance@gmail.com>
6
6
  License: Apache License
@@ -1,4 +1,4 @@
1
- dv_flow/mgr/__init__.py,sha256=9uG73DcJg-IwP6rcA603nlH-B2DHJVEBA9Xw8Lv31S4,1301
1
+ dv_flow/mgr/__init__.py,sha256=-W5z1zkpU0GqrBhYgt59-WCXHHQ6D7MsKyvgDLHj1DU,1315
2
2
  dv_flow/mgr/__main__.py,sha256=BogNdBkXhgg05E8_IumNkVoag6WwvfbpiI8346oOtPo,3844
3
3
  dv_flow/mgr/cond_def.py,sha256=2ZkzPusqVkN1fFMTvkDl9O_OJLPdD_cK3xzX9J75RMw,343
4
4
  dv_flow/mgr/config.py,sha256=nF_hM-RwJLvgfbwRe11a1wsAu_SihSd5qOxQi7I6lvU,108
@@ -48,7 +48,7 @@ dv_flow/mgr/task_node_leaf.py,sha256=od6INBSqMkKZTbCAGJFXzZ3_eD-g7_rt_v3HNa61cQ8
48
48
  dv_flow/mgr/task_output.py,sha256=ZwyvwnYj_gHOEFAEOH3m24Xfc4Cn77hb1j7LkX8_3C4,1086
49
49
  dv_flow/mgr/task_params_ctor.py,sha256=qlrzibGAFHmbqOu88jEoh1wOSFHu68Gwdgc259-50e8,1915
50
50
  dv_flow/mgr/task_run_ctxt.py,sha256=n7oDozaCguzpQfjKwhwXR6ylSlNmtSJ5rkEsLQtqW3Q,3306
51
- dv_flow/mgr/task_runner.py,sha256=BsH54Kn03dXI52-q2mmwpvAedNRsZPRGBYm5rDxQLjg,9841
51
+ dv_flow/mgr/task_runner.py,sha256=51eQj5R-cmqWPR3F8aTom51YQkIxpZqsW-CxfuhTOic,9845
52
52
  dv_flow/mgr/type.py,sha256=hoJTatlPC0yOazKSWduK-5CfY38RPkc6qXFzOCcVSdM,723
53
53
  dv_flow/mgr/type_def.py,sha256=4sge3PibO1jDnS0cXdX0PiurcKbDA3kT6rb4DGIKwEM,1176
54
54
  dv_flow/mgr/yaml_srcinfo_loader.py,sha256=29BNRiB8Hj1FepkrLtdjHSv5U_85Q432gBeeK80nKEA,1606
@@ -69,9 +69,9 @@ dv_flow/mgr/util/util.py,sha256=BO7iqP_c9ttmXkojq7nKDN-g8wl1_Pco9k-KnrXxjwE,1889
69
69
  dv_flow/mgr/util/cmds/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
70
70
  dv_flow/mgr/util/cmds/cmd_schema.py,sha256=IJzZdxCSEgIQ79LpYiM7UqJ9RJ-7yraqmBN2XVgAgXA,1752
71
71
  dv_flow/mgr/util/cmds/cmd_workspace.py,sha256=egmaIXpe5L-TePwmcfisfrG6tdiTUWSjqa9Za5WChVs,890
72
- dv_flow_mgr-1.6.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
73
- dv_flow_mgr-1.6.0.dist-info/METADATA,sha256=MerCjhY2jyNWEi4KamfyzWaReJgyhtrqMrWzFC52aws,13322
74
- dv_flow_mgr-1.6.0.dist-info/WHEEL,sha256=wXxTzcEDnjrTwFYjLPcsW_7_XihufBwmpiBeiXNBGEA,91
75
- dv_flow_mgr-1.6.0.dist-info/entry_points.txt,sha256=1roy8wAFM48LabOvr6jiOw0MUs-qE8X3Vf8YykPazxk,50
76
- dv_flow_mgr-1.6.0.dist-info/top_level.txt,sha256=amfVTkggzYPtWwLqNmRukfz1Buu0pGS2SrYBBLhXm04,8
77
- dv_flow_mgr-1.6.0.dist-info/RECORD,,
72
+ dv_flow_mgr-1.6.14799059072rc0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
73
+ dv_flow_mgr-1.6.14799059072rc0.dist-info/METADATA,sha256=oR4E84K_dUd1MzxFxgX4PW7mWbF2aTwOm-VCSk1qEiE,13335
74
+ dv_flow_mgr-1.6.14799059072rc0.dist-info/WHEEL,sha256=wXxTzcEDnjrTwFYjLPcsW_7_XihufBwmpiBeiXNBGEA,91
75
+ dv_flow_mgr-1.6.14799059072rc0.dist-info/entry_points.txt,sha256=1roy8wAFM48LabOvr6jiOw0MUs-qE8X3Vf8YykPazxk,50
76
+ dv_flow_mgr-1.6.14799059072rc0.dist-info/top_level.txt,sha256=amfVTkggzYPtWwLqNmRukfz1Buu0pGS2SrYBBLhXm04,8
77
+ dv_flow_mgr-1.6.14799059072rc0.dist-info/RECORD,,