hpcflow-new2 0.2.0a209__py3-none-any.whl → 0.2.0a211__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.
hpcflow/_version.py CHANGED
@@ -1 +1 @@
1
- __version__ = "0.2.0a209"
1
+ __version__ = "0.2.0a211"
@@ -344,7 +344,7 @@ class OutputFileParser(JSONLike):
344
344
  Whether this script can be aborted.
345
345
  save_files: list[str]
346
346
  The files that should be saved to the persistent store for the workflow.
347
- clean_files: list[str]
347
+ clean_up: list[str]
348
348
  The files that should be immediately removed.
349
349
  rules: list[~hpcflow.app.ActionRule]
350
350
  Rules for whether to enable this parser.
@@ -183,7 +183,7 @@ class Environment(JSONLike):
183
183
  setup: list[str]
184
184
  Commands to run to enter the environment.
185
185
  specifiers: dict[str, str]
186
- Dictionary of attributes that may be used to supply addional key/value pairs to
186
+ Dictionary of attributes that may be used to supply additional key/value pairs to
187
187
  look up an environment by.
188
188
  executables: list[Executable]
189
189
  List of abstract executables in the environment.
@@ -211,7 +211,7 @@ class Environment(JSONLike):
211
211
  self.name = name
212
212
  #: Documentation for the environment.
213
213
  self.doc = doc
214
- #: Dictionary of attributes that may be used to supply addional key/value pairs
214
+ #: Dictionary of attributes that may be used to supply additional key/value pairs
215
215
  #: to look up an environment by.
216
216
  self.specifiers: Mapping[str, str] = specifiers or {}
217
217
  #: List of abstract executables in the environment.
hpcflow/sdk/core/loop.py CHANGED
@@ -295,7 +295,7 @@ class WorkflowLoop(AppAware):
295
295
  iterable_parameters:
296
296
  Description of what parameters are being iterated over.
297
297
  output_parameters:
298
- Decription of what parameter are output from this loop, and the final task insert
298
+ Description of what parameter are output from this loop, and the final task insert
299
299
  ID from which they are output.
300
300
  parents: list[str]
301
301
  The paths to the parent entities of this loop.
@@ -296,7 +296,7 @@ class SubParameter:
296
296
  A parameter that is a component of another parameter.
297
297
  """
298
298
 
299
- #: How to find this within the containing paraneter.
299
+ #: How to find this within the containing parameter.
300
300
  address: Address
301
301
  #: The containing main parameter.
302
302
  parameter: Parameter
@@ -592,7 +592,7 @@ class SchemaInput(SchemaParameter):
592
592
  @property
593
593
  def single_label(self) -> str | None:
594
594
  """
595
- The label of this input, assuming it is not mulitple.
595
+ The label of this input, assuming it is not multiple.
596
596
  """
597
597
  if not self.multiple:
598
598
  return next(iter(self.labels))
@@ -601,7 +601,7 @@ class SchemaInput(SchemaParameter):
601
601
  @property
602
602
  def single_labelled_type(self) -> str | None:
603
603
  """
604
- The type code of this input, assuming it is not mulitple.
604
+ The type code of this input, assuming it is not multiple.
605
605
  """
606
606
  if not self.multiple:
607
607
  return next(iter(self.labelled_info()))["labelled_type"]
@@ -610,7 +610,7 @@ class SchemaInput(SchemaParameter):
610
610
  @property
611
611
  def single_labelled_data(self) -> LabelInfo | None:
612
612
  """
613
- The value of this input, assuming it is not mulitple.
613
+ The value of this input, assuming it is not multiple.
614
614
  """
615
615
  if (label := self.single_label) is not None:
616
616
  return self.labels[label]
hpcflow/sdk/core/types.py CHANGED
@@ -206,7 +206,7 @@ class SchemaInputKwargs(TypedDict):
206
206
  multiple: bool
207
207
  #: The labels.
208
208
  labels: dict[str, LabelInfo] | None
209
- #: The number or proportional of permitted unset parameter data found when reolving
209
+ #: The number or proportion of permitted unset parameter data found when resolving
210
210
  #: this input from upstream outputs.
211
211
  allow_failed_dependencies: int | float | bool | None
212
212
 
@@ -202,7 +202,7 @@ class WorkflowTemplate(JSONLike):
202
202
  If True, merge template-level `resources` into element set resources. If False,
203
203
  template-level resources are ignored.
204
204
  merge_envs:
205
- Whether to merge the environemtns into task resources.
205
+ Whether to merge the environments into task resources.
206
206
  """
207
207
 
208
208
  _validation_schema: ClassVar[str] = "workflow_spec_schema.yaml"
@@ -250,7 +250,7 @@ class WorkflowTemplate(JSONLike):
250
250
  store_kwargs: dict[str, Any] = field(default_factory=dict)
251
251
  #: Whether to merge template-level `resources` into element set resources.
252
252
  merge_resources: bool = True
253
- #: Whether to merge the environemtns into task resources.
253
+ #: Whether to merge the environments into task resources.
254
254
  merge_envs: bool = True
255
255
 
256
256
  def __post_init__(self) -> None:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: hpcflow-new2
3
- Version: 0.2.0a209
3
+ Version: 0.2.0a211
4
4
  Summary: Computational workflow management
5
5
  License: MPL-2.0
6
6
  Author: aplowman
@@ -1,7 +1,7 @@
1
1
  hpcflow/__init__.py,sha256=WIETuRHeOp2SqUqHUzpjQ-lk9acbYv-6aWOhZPRdlhs,64
2
2
  hpcflow/__pyinstaller/__init__.py,sha256=YOzBlPSck6slucv6lJM9K80JtsJWxXRL00cv6tRj3oc,98
3
3
  hpcflow/__pyinstaller/hook-hpcflow.py,sha256=P2b-8QdQqkSS7cJB6CB3CudUuJ9iZzTh2fQF4hNdCa4,1118
4
- hpcflow/_version.py,sha256=NywescsJ4WKZobruzz_SLeat9xPFki8q1Hgx-CuicPY,26
4
+ hpcflow/_version.py,sha256=6avItIKv5cLR9ZrMwUlbTyLAUK1Yte-GFLR1niD3MhI,26
5
5
  hpcflow/app.py,sha256=gl2viVS65PbpDhUp2DARaYHFDqDWQjuoyB3ikrCNRW4,1367
6
6
  hpcflow/cli.py,sha256=G2J3D9v6MnMWOWMMWK6UEKLn_6wnV9lT_qygEBBxg-I,66
7
7
  hpcflow/data/demo_data_manifest/__init__.py,sha256=Hsq0jT8EXM13wu1MpGy5FQgyuz56ygep4VWOnulFn50,41
@@ -77,28 +77,28 @@ hpcflow/sdk/core/__init__.py,sha256=uxvGIUmzvFvylxFL4OGoKHs8GABHHPFaki-Xyc7Nquk,
77
77
  hpcflow/sdk/core/actions.py,sha256=379uJT_fScwa-n_aEGd-DlXzZpFLFWkctxnMa-u4Y0U,118219
78
78
  hpcflow/sdk/core/app_aware.py,sha256=A5L9U_wcf9eleuDj1vxZMai1Fk7FLNdMjzA-ay1hHeE,568
79
79
  hpcflow/sdk/core/cache.py,sha256=FNOaZzZmtcoFwByR39kI65XdbO6i6qpYup9qrwUN-YM,8172
80
- hpcflow/sdk/core/command_files.py,sha256=9YbQuOfa0HrAZcAtgH8_k3oJRfRVRpv5QtZ9Uag9W2I,24961
80
+ hpcflow/sdk/core/command_files.py,sha256=c_ZOe6e2ieOOon_24rAIZeYCZp85KK07N6ou2Atx0-I,24958
81
81
  hpcflow/sdk/core/commands.py,sha256=vFyZ9Cv_tvGqSGtVEnAHAeXA-HAxWoF0nmf1e0bFCvs,15993
82
82
  hpcflow/sdk/core/element.py,sha256=VVk-lt03kN-vk38jhuzTV8GcPKWKyziXS2gbDA9mTBQ,68412
83
83
  hpcflow/sdk/core/enums.py,sha256=b0Zd35AdEEfQYWIO0IHc---hqcWyQ3HC35vGWbzB7sA,4386
84
- hpcflow/sdk/core/environment.py,sha256=vvHJhdI8Jeae20AGvbp0DY-Wm7efNFlAkkcLESKljFQ,7955
84
+ hpcflow/sdk/core/environment.py,sha256=m0Qp4Y1XcPJ1yPrdHp6RJv9_H61nA9Qo2ZJV_-wGne8,7959
85
85
  hpcflow/sdk/core/errors.py,sha256=5Bjk1w8FdVP4X7oFCNtzxJ_q4uaSZfQausZkWvYMkS4,28782
86
86
  hpcflow/sdk/core/execute.py,sha256=Gc2SauA4QNA1W4Gi2FYoKoqkoJtGg57cgn1p87WNCIs,7221
87
87
  hpcflow/sdk/core/json_like.py,sha256=f3Q1lxebn79nHIIQ2iRw9MbIDByGmdnlGp4yW39p-9g,29479
88
- hpcflow/sdk/core/loop.py,sha256=1GRUerSIAQ30KDi1-0M5gNiwzslSnmTTshLYUHwIMn0,50083
88
+ hpcflow/sdk/core/loop.py,sha256=vs7pNVe3Io5zNO6Xl_Tqmra9mCJUw8IESLZC4p2QFvo,50084
89
89
  hpcflow/sdk/core/loop_cache.py,sha256=C0t9UpvHFdTmw3bViZ2wccjZWtkbSbN9APvcwzBSREg,10801
90
90
  hpcflow/sdk/core/object_list.py,sha256=eX6jcJNlXcbiu3LMnU6kGOkBeUB9WUh9vrGsv97DInk,29906
91
- hpcflow/sdk/core/parameters.py,sha256=fljEF6pfzPcLqTonDPC5q7OWPS31ib8Fc9DWQMK1rhw,97827
91
+ hpcflow/sdk/core/parameters.py,sha256=yqC-3JqSqADXEBC9iDzZ4D0z_A5904qzquy7yb5wSm8,97827
92
92
  hpcflow/sdk/core/rule.py,sha256=LiNyKp09a6TRGJvtiB1CcNqgyAIuPhuSW2RVfDWf5FE,6274
93
93
  hpcflow/sdk/core/run_dir_files.py,sha256=yh49BSlswqqyr97x5nDT87qu2MlOLMu7Arzl_B-fxy0,2061
94
94
  hpcflow/sdk/core/skip_reason.py,sha256=xPm8bd8sbPpiZ3sx9ZeW0jxgRQ0TBokSv0XIJKrEW2Y,113
95
95
  hpcflow/sdk/core/task.py,sha256=0aqkwP-idjD5OYU-TLzVtjTdIVotb6ayAEzGGjM6sm0,142592
96
96
  hpcflow/sdk/core/task_schema.py,sha256=Aw13WNLutU_nIJknC9noJyEFkpxMLz3cN7ojIMgwZqI,38843
97
97
  hpcflow/sdk/core/test_utils.py,sha256=UXe8P-1b_6Pn6vdgJfMVsTGJdVI65TZ2mSUgWHlVnnc,13766
98
- hpcflow/sdk/core/types.py,sha256=y07Z6xbagPy45P4FfSu-Sv6q2Caeo9886L5JjWYaEOg,13030
98
+ hpcflow/sdk/core/types.py,sha256=x_5eHTRw2gVWMpaYYEhdD3Krtzq1fKShWAJhame6E-w,13029
99
99
  hpcflow/sdk/core/utils.py,sha256=P3JBrPS9ZM0sKrrihxaQScdFVX6ePSYQB5Rfbboo8CM,36316
100
100
  hpcflow/sdk/core/validation.py,sha256=PtM-3j5_mzp79DObgsWeJOZjOOJPKqkwWgeyDAVuAf0,1926
101
- hpcflow/sdk/core/workflow.py,sha256=dQxUyih-Q6foMTEScR4Fz9rGwAjLPvIXNEmICpBYDao,183588
101
+ hpcflow/sdk/core/workflow.py,sha256=hBVPuZeUDglcLAttFRCeJXwrPL8OxFgLhSsntwCBioQ,183588
102
102
  hpcflow/sdk/core/zarr_io.py,sha256=i6WqkFXe-q1sJGTCYAbsNRXRrdkxZy6NRahTcuZPuX4,5906
103
103
  hpcflow/sdk/data/__init__.py,sha256=-YzROirohSKU2UGYj5vkCe_J2KejbzhIjUXNaJwKHLk,568
104
104
  hpcflow/sdk/data/config_file_schema.yaml,sha256=7i3z_m3GBRtLyB4c7qPngnlQWqcIq1CyCcOysDyq4es,791
@@ -216,8 +216,8 @@ hpcflow/tests/workflows/test_submission.py,sha256=SUbBUbD8C8LSulrI7aETkzP9RqED48
216
216
  hpcflow/tests/workflows/test_workflows.py,sha256=9z3rtXjA5iMOp4C0q4TkD_9kLzwourCY-obpeOtnNt0,18927
217
217
  hpcflow/tests/workflows/test_zip.py,sha256=MzEwsIAYV_1A3bD0XRo23zUwUKVzkkmNd8_cil6YdWQ,578
218
218
  hpcflow/viz_demo.ipynb,sha256=6D9uBbWK3oMfbaf93Tnv5riFPtW-2miUTWNr9kGcnd4,228913
219
- hpcflow_new2-0.2.0a209.dist-info/LICENSE,sha256=Xhxf_KsrJNJFGMogumZhXSTPhUOVHCWf7nU-TDzqg0E,16763
220
- hpcflow_new2-0.2.0a209.dist-info/METADATA,sha256=RvmnWybW6N0RDXm8bxvKRcHQAQa3ehVsQzwsCPuve9w,2671
221
- hpcflow_new2-0.2.0a209.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
222
- hpcflow_new2-0.2.0a209.dist-info/entry_points.txt,sha256=aoGtCnFdfPcXfBdu2zZyMOJoz6fPgdR0elqsgrE-USU,106
223
- hpcflow_new2-0.2.0a209.dist-info/RECORD,,
219
+ hpcflow_new2-0.2.0a211.dist-info/LICENSE,sha256=Xhxf_KsrJNJFGMogumZhXSTPhUOVHCWf7nU-TDzqg0E,16763
220
+ hpcflow_new2-0.2.0a211.dist-info/METADATA,sha256=xOIbYpEuXG4xjdJC1j8SW71yu47VBSaeGnz2r9k-WM8,2671
221
+ hpcflow_new2-0.2.0a211.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
222
+ hpcflow_new2-0.2.0a211.dist-info/entry_points.txt,sha256=aoGtCnFdfPcXfBdu2zZyMOJoz6fPgdR0elqsgrE-USU,106
223
+ hpcflow_new2-0.2.0a211.dist-info/RECORD,,