vantage6-algorithm-tools 4.8.2__tar.gz → 4.9.0__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.
- {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/PKG-INFO +1 -1
- {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/vantage6/algorithm/client/__init__.py +4 -3
- {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/vantage6/algorithm/client/_version.py +1 -1
- {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/vantage6_algorithm_tools.egg-info/PKG-INFO +1 -1
- {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/vantage6_algorithm_tools.egg-info/requires.txt +1 -1
- {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/setup.cfg +0 -0
- {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/setup.py +0 -0
- {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/tests/algorithm_module.py +0 -0
- {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/tests/test_deserialization.py +0 -0
- {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/tests/test_docker_wrapper.py +0 -0
- {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/tests/test_serialization.py +0 -0
- {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/vantage6/algorithm/client/__build__ +0 -0
- {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/vantage6/algorithm/tools/__init__.py +0 -0
- {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/vantage6/algorithm/tools/decorators.py +0 -0
- {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/vantage6/algorithm/tools/exceptions.py +0 -0
- {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/vantage6/algorithm/tools/mock_client.py +0 -0
- {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/vantage6/algorithm/tools/preprocessing/__init__.py +0 -0
- {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/vantage6/algorithm/tools/preprocessing/functions.py +0 -0
- {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/vantage6/algorithm/tools/util.py +0 -0
- {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/vantage6/algorithm/tools/wrap.py +0 -0
- {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/vantage6/algorithm/tools/wrappers.py +0 -0
- {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/vantage6_algorithm_tools.egg-info/SOURCES.txt +0 -0
- {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/vantage6_algorithm_tools.egg-info/dependency_links.txt +0 -0
- {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/vantage6_algorithm_tools.egg-info/top_level.txt +0 -0
|
@@ -339,7 +339,7 @@ class AlgorithmClient(ClientBase):
|
|
|
339
339
|
|
|
340
340
|
def create(
|
|
341
341
|
self,
|
|
342
|
-
input_:
|
|
342
|
+
input_: dict,
|
|
343
343
|
organizations: list[int] = None,
|
|
344
344
|
name: str = "subtask",
|
|
345
345
|
description: str = None,
|
|
@@ -353,8 +353,9 @@ class AlgorithmClient(ClientBase):
|
|
|
353
353
|
|
|
354
354
|
Parameters
|
|
355
355
|
----------
|
|
356
|
-
input_ :
|
|
357
|
-
Input to the task.
|
|
356
|
+
input_ : dict
|
|
357
|
+
Input to the task. This dictionary usually contains the algorithm method
|
|
358
|
+
to call and the arguments to pass to the method.
|
|
358
359
|
organizations : list[int]
|
|
359
360
|
List of organization IDs that should execute the task.
|
|
360
361
|
name: str, optional
|
|
@@ -7,7 +7,7 @@ with open(os.path.join(here, "__build__")) as fp:
|
|
|
7
7
|
__build__ = json.load(fp)
|
|
8
8
|
|
|
9
9
|
# Module version
|
|
10
|
-
version_info = (4,
|
|
10
|
+
version_info = (4, 9, 0, "final", __build__, 0)
|
|
11
11
|
|
|
12
12
|
# Module version stage suffix map
|
|
13
13
|
_specifier_ = {"alpha": "a", "beta": "b", "candidate": "rc", "final": ""}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/tests/test_deserialization.py
RENAMED
|
File without changes
|
{vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/tests/test_docker_wrapper.py
RENAMED
|
File without changes
|
{vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/tests/test_serialization.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/vantage6/algorithm/tools/util.py
RENAMED
|
File without changes
|
{vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/vantage6/algorithm/tools/wrap.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|