jobflow 0.3.0__tar.gz → 0.3.1__tar.gz
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.
- {jobflow-0.3.0/src/jobflow.egg-info → jobflow-0.3.1}/PKG-INFO +2 -2
- {jobflow-0.3.0 → jobflow-0.3.1}/README.md +1 -1
- {jobflow-0.3.0 → jobflow-0.3.1}/src/jobflow/core/job.py +1 -1
- {jobflow-0.3.0 → jobflow-0.3.1/src/jobflow.egg-info}/PKG-INFO +2 -2
- {jobflow-0.3.0 → jobflow-0.3.1}/LICENSE +0 -0
- {jobflow-0.3.0 → jobflow-0.3.1}/pyproject.toml +0 -0
- {jobflow-0.3.0 → jobflow-0.3.1}/setup.cfg +0 -0
- {jobflow-0.3.0 → jobflow-0.3.1}/src/jobflow/__init__.py +0 -0
- {jobflow-0.3.0 → jobflow-0.3.1}/src/jobflow/_version.py +0 -0
- {jobflow-0.3.0 → jobflow-0.3.1}/src/jobflow/core/__init__.py +0 -0
- {jobflow-0.3.0 → jobflow-0.3.1}/src/jobflow/core/flow.py +0 -0
- {jobflow-0.3.0 → jobflow-0.3.1}/src/jobflow/core/maker.py +0 -0
- {jobflow-0.3.0 → jobflow-0.3.1}/src/jobflow/core/reference.py +0 -0
- {jobflow-0.3.0 → jobflow-0.3.1}/src/jobflow/core/schemas.py +0 -0
- {jobflow-0.3.0 → jobflow-0.3.1}/src/jobflow/core/state.py +0 -0
- {jobflow-0.3.0 → jobflow-0.3.1}/src/jobflow/core/store.py +0 -0
- {jobflow-0.3.0 → jobflow-0.3.1}/src/jobflow/managers/__init__.py +0 -0
- {jobflow-0.3.0 → jobflow-0.3.1}/src/jobflow/managers/fireworks.py +0 -0
- {jobflow-0.3.0 → jobflow-0.3.1}/src/jobflow/managers/local.py +0 -0
- {jobflow-0.3.0 → jobflow-0.3.1}/src/jobflow/py.typed +0 -0
- {jobflow-0.3.0 → jobflow-0.3.1}/src/jobflow/settings.py +0 -0
- {jobflow-0.3.0 → jobflow-0.3.1}/src/jobflow/utils/__init__.py +0 -0
- {jobflow-0.3.0 → jobflow-0.3.1}/src/jobflow/utils/dict_mods.py +0 -0
- {jobflow-0.3.0 → jobflow-0.3.1}/src/jobflow/utils/enum.py +0 -0
- {jobflow-0.3.0 → jobflow-0.3.1}/src/jobflow/utils/find.py +0 -0
- {jobflow-0.3.0 → jobflow-0.3.1}/src/jobflow/utils/graph.py +0 -0
- {jobflow-0.3.0 → jobflow-0.3.1}/src/jobflow/utils/log.py +0 -0
- {jobflow-0.3.0 → jobflow-0.3.1}/src/jobflow/utils/uid.py +0 -0
- {jobflow-0.3.0 → jobflow-0.3.1}/src/jobflow/utils/uuid.py +0 -0
- {jobflow-0.3.0 → jobflow-0.3.1}/src/jobflow.egg-info/SOURCES.txt +0 -0
- {jobflow-0.3.0 → jobflow-0.3.1}/src/jobflow.egg-info/dependency_links.txt +0 -0
- {jobflow-0.3.0 → jobflow-0.3.1}/src/jobflow.egg-info/requires.txt +0 -0
- {jobflow-0.3.0 → jobflow-0.3.1}/src/jobflow.egg-info/top_level.txt +0 -0
- {jobflow-0.3.0 → jobflow-0.3.1}/tests/test_settings.py +0 -0
- {jobflow-0.3.0 → jobflow-0.3.1}/tests/test_version.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: jobflow
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.1
|
|
4
4
|
Summary: jobflow is a library for writing computational workflows
|
|
5
5
|
Author-email: Alex Ganose <a.ganose@imperial.ac.uk>
|
|
6
6
|
License: modified BSD
|
|
@@ -154,7 +154,7 @@ the jobs is determined automatically and can be visualised using the flow graph.
|
|
|
154
154
|
|
|
155
155
|
## Installation
|
|
156
156
|
|
|
157
|
-
`jobflow` is a Python 3.
|
|
157
|
+
`jobflow` is a Python 3.10+ library and can be installed using `pip`.
|
|
158
158
|
|
|
159
159
|
```bash
|
|
160
160
|
pip install jobflow
|
|
@@ -82,7 +82,7 @@ the jobs is determined automatically and can be visualised using the flow graph.
|
|
|
82
82
|
|
|
83
83
|
## Installation
|
|
84
84
|
|
|
85
|
-
`jobflow` is a Python 3.
|
|
85
|
+
`jobflow` is a Python 3.10+ library and can be installed using `pip`.
|
|
86
86
|
|
|
87
87
|
```bash
|
|
88
88
|
pip install jobflow
|
|
@@ -1312,7 +1312,7 @@ class Response(typing.Generic[T]):
|
|
|
1312
1312
|
return isinstance(x, Job | Flow)
|
|
1313
1313
|
|
|
1314
1314
|
should_replace = is_job_or_flow(job_returns)
|
|
1315
|
-
if isinstance(job_returns, (list, tuple)):
|
|
1315
|
+
if job_returns and isinstance(job_returns, (list, tuple)):
|
|
1316
1316
|
should_replace = all(is_job_or_flow(resp) for resp in job_returns)
|
|
1317
1317
|
|
|
1318
1318
|
if should_replace:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: jobflow
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.1
|
|
4
4
|
Summary: jobflow is a library for writing computational workflows
|
|
5
5
|
Author-email: Alex Ganose <a.ganose@imperial.ac.uk>
|
|
6
6
|
License: modified BSD
|
|
@@ -154,7 +154,7 @@ the jobs is determined automatically and can be visualised using the flow graph.
|
|
|
154
154
|
|
|
155
155
|
## Installation
|
|
156
156
|
|
|
157
|
-
`jobflow` is a Python 3.
|
|
157
|
+
`jobflow` is a Python 3.10+ library and can be installed using `pip`.
|
|
158
158
|
|
|
159
159
|
```bash
|
|
160
160
|
pip install jobflow
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|