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.
Files changed (24) hide show
  1. {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/PKG-INFO +1 -1
  2. {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/vantage6/algorithm/client/__init__.py +4 -3
  3. {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/vantage6/algorithm/client/_version.py +1 -1
  4. {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/vantage6_algorithm_tools.egg-info/PKG-INFO +1 -1
  5. {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/vantage6_algorithm_tools.egg-info/requires.txt +1 -1
  6. {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/setup.cfg +0 -0
  7. {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/setup.py +0 -0
  8. {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/tests/algorithm_module.py +0 -0
  9. {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/tests/test_deserialization.py +0 -0
  10. {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/tests/test_docker_wrapper.py +0 -0
  11. {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/tests/test_serialization.py +0 -0
  12. {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/vantage6/algorithm/client/__build__ +0 -0
  13. {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/vantage6/algorithm/tools/__init__.py +0 -0
  14. {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/vantage6/algorithm/tools/decorators.py +0 -0
  15. {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/vantage6/algorithm/tools/exceptions.py +0 -0
  16. {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/vantage6/algorithm/tools/mock_client.py +0 -0
  17. {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/vantage6/algorithm/tools/preprocessing/__init__.py +0 -0
  18. {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/vantage6/algorithm/tools/preprocessing/functions.py +0 -0
  19. {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/vantage6/algorithm/tools/util.py +0 -0
  20. {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/vantage6/algorithm/tools/wrap.py +0 -0
  21. {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/vantage6/algorithm/tools/wrappers.py +0 -0
  22. {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/vantage6_algorithm_tools.egg-info/SOURCES.txt +0 -0
  23. {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/vantage6_algorithm_tools.egg-info/dependency_links.txt +0 -0
  24. {vantage6_algorithm_tools-4.8.2 → vantage6_algorithm_tools-4.9.0}/vantage6_algorithm_tools.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vantage6_algorithm_tools
3
- Version: 4.8.2
3
+ Version: 4.9.0
4
4
  Summary: Vantage6 algorithm tools
5
5
  Home-page: https://github.com/vantage6/vantage6
6
6
  Requires-Python: >=3.6
@@ -339,7 +339,7 @@ class AlgorithmClient(ClientBase):
339
339
 
340
340
  def create(
341
341
  self,
342
- input_: bytes,
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_ : bytes
357
- Input to the task. Should be b64 encoded.
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, 8, 2, "final", __build__, 0)
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": ""}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vantage6-algorithm-tools
3
- Version: 4.8.2
3
+ Version: 4.9.0
4
4
  Summary: Vantage6 algorithm tools
5
5
  Home-page: https://github.com/vantage6/vantage6
6
6
  Requires-Python: >=3.6
@@ -4,7 +4,7 @@ PyJWT==2.6.0
4
4
  pyfiglet==0.8.post1
5
5
  SPARQLWrapper>=2.0.0
6
6
  sqlalchemy==1.4.46
7
- vantage6-common==4.8.2
7
+ vantage6-common==4.9.0
8
8
 
9
9
  [dev]
10
10
  black