vantage6-algorithm-store 5.0.1rc2__tar.gz → 5.0.2__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 (68) hide show
  1. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/PKG-INFO +3 -3
  2. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/pyproject.toml +3 -3
  3. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/.gitignore +0 -0
  4. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/Makefile +0 -0
  5. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/README.md +0 -0
  6. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/dev_store.sh +0 -0
  7. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/server.sh +0 -0
  8. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/tests_store/__init__.py +0 -0
  9. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/tests_store/base/__init__.py +0 -0
  10. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/tests_store/base/unittest_base.py +0 -0
  11. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/tests_store/resources/__init__.py +0 -0
  12. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/tests_store/resources/test_algorithm.py +0 -0
  13. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/tests_store/resources/test_policy.py +0 -0
  14. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/tests_store/resources/test_review.py +0 -0
  15. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/tests_store/resources/test_role.py +0 -0
  16. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/tests_store/resources/test_rule.py +0 -0
  17. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/tests_store/resources/test_user.py +0 -0
  18. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/tests_store/resources/test_version.py +0 -0
  19. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/tests_store/test___init__.py +0 -0
  20. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/tests_store/test_argument_schema.py +0 -0
  21. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/tests_store/test_link_algorithms.py +0 -0
  22. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/__init__.py +0 -0
  23. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/_data/unittest_config.yaml +0 -0
  24. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/_data/unittest_fixtures.yaml +0 -0
  25. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/algorithm_create.py +0 -0
  26. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/db.py +0 -0
  27. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/default_roles.py +0 -0
  28. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/globals.py +0 -0
  29. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/init_db.py +0 -0
  30. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/link_algorithms.py +0 -0
  31. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/model/__init__.py +0 -0
  32. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/model/algorithm.py +0 -0
  33. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/model/allowed_argument_value.py +0 -0
  34. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/model/argument.py +0 -0
  35. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/model/base.py +0 -0
  36. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/model/common/enums.py +0 -0
  37. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/model/common/ui_visualization_schemas.py +0 -0
  38. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/model/database.py +0 -0
  39. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/model/function.py +0 -0
  40. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/model/permission.py +0 -0
  41. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/model/policy.py +0 -0
  42. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/model/review.py +0 -0
  43. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/model/role.py +0 -0
  44. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/model/role_rule_association.py +0 -0
  45. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/model/rule.py +0 -0
  46. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/model/ui_visualization.py +0 -0
  47. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/model/user.py +0 -0
  48. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/permission.py +0 -0
  49. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/resource/__init__.py +0 -0
  50. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/resource/algorithm.py +0 -0
  51. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/resource/policy.py +0 -0
  52. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/resource/review.py +0 -0
  53. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/resource/role.py +0 -0
  54. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/resource/rule.py +0 -0
  55. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/resource/schema/input_schema.py +0 -0
  56. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/resource/schema/output_schema.py +0 -0
  57. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/resource/user.py +0 -0
  58. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/resource/version.py +0 -0
  59. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/static/robots.txt +0 -0
  60. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/templates/mail/algorithm_review_finalized.html +0 -0
  61. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/templates/mail/algorithm_review_finalized.txt +0 -0
  62. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/templates/mail/new_algorithm.html +0 -0
  63. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/templates/mail/new_algorithm.txt +0 -0
  64. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/templates/mail/new_review.html +0 -0
  65. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/templates/mail/new_review.txt +0 -0
  66. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/templates/mail/review_no_longer_required.html +0 -0
  67. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/templates/mail/review_no_longer_required.txt +0 -0
  68. {vantage6_algorithm_store-5.0.1rc2 → vantage6_algorithm_store-5.0.2}/vantage6/algorithm/store/wsgi.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: vantage6-algorithm-store
3
- Version: 5.0.1rc2
3
+ Version: 5.0.2
4
4
  Summary: Vantage6 algorithm store
5
5
  Author: Vantage6 Team
6
6
  Maintainer-email: Frank Martin <f.martin@iknl.nl>, Bart van Beusekom <b.vanbeusekom@iknl.nl>
@@ -18,8 +18,8 @@ Requires-Dist: python-keycloak==5.5.0
18
18
  Requires-Dist: requests==2.33.1
19
19
  Requires-Dist: schema==0.7.5
20
20
  Requires-Dist: sqlalchemy==2.0.37
21
- Requires-Dist: vantage6-common==5.0.1rc2
22
- Requires-Dist: vantage6==5.0.1rc2
21
+ Requires-Dist: vantage6-common==5.0.2
22
+ Requires-Dist: vantage6==5.0.2
23
23
  Provides-Extra: dev
24
24
  Requires-Dist: black; extra == 'dev'
25
25
  Requires-Dist: coverage==7.10.2; extra == 'dev'
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "vantage6-algorithm-store"
7
- version = "5.0.1rc2"
7
+ version = "5.0.2"
8
8
  description = "Vantage6 algorithm store"
9
9
  readme = "README.md"
10
10
  license = {text = "MIT"}
@@ -30,8 +30,8 @@ dependencies = [
30
30
  "requests==2.33.1",
31
31
  "schema==0.7.5",
32
32
  "sqlalchemy==2.0.37",
33
- "vantage6-common==5.0.1rc2",
34
- "vantage6==5.0.1rc2",
33
+ "vantage6-common==5.0.2",
34
+ "vantage6==5.0.2",
35
35
  ]
36
36
 
37
37
  [project.optional-dependencies]