starflow-py 0.46.0__tar.gz → 0.47.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 (78) hide show
  1. {starflow_py-0.46.0 → starflow_py-0.47.0}/PKG-INFO +2 -2
  2. {starflow_py-0.46.0 → starflow_py-0.47.0}/pyproject.toml +1 -1
  3. starflow_py-0.47.0/src/starflow/VERSION +1 -0
  4. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow_py.egg-info/PKG-INFO +2 -2
  5. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow_py.egg-info/requires.txt +1 -1
  6. starflow_py-0.46.0/src/starflow/VERSION +0 -1
  7. {starflow_py-0.46.0 → starflow_py-0.47.0}/LICENSE +0 -0
  8. {starflow_py-0.46.0 → starflow_py-0.47.0}/README.md +0 -0
  9. {starflow_py-0.46.0 → starflow_py-0.47.0}/setup.cfg +0 -0
  10. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/__init__.py +0 -0
  11. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/actions/github_actions.py +0 -0
  12. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/base_piece.py +0 -0
  13. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/cli/__init__.py +0 -0
  14. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/cli/cli.py +0 -0
  15. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/cli/utils/__init__.py +0 -0
  16. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/cli/utils/config-starflow-local.toml +0 -0
  17. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/cli/utils/constants.py +0 -0
  18. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/cli/utils/docker-compose.yaml +0 -0
  19. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/cli/utils/pieces_repository.py +0 -0
  20. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/cli/utils/platform.py +0 -0
  21. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/client/__init__.py +0 -0
  22. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/client/github_rest_client.py +0 -0
  23. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/client/legacy/fs_client.py +0 -0
  24. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/client/legacy/s3_client.py +0 -0
  25. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/client/local_files_client.py +0 -0
  26. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/client/starflow_backend_client.py +0 -0
  27. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/custom_operators/__init__.py +0 -0
  28. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/custom_operators/deprecated/base_operator.py +0 -0
  29. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/custom_operators/deprecated/external_python_operator.py +0 -0
  30. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/custom_operators/docker_operator.py +0 -0
  31. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/custom_operators/k8s_branch_operator.py +0 -0
  32. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/custom_operators/k8s_operator.py +0 -0
  33. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/custom_operators/python_operator.py +0 -0
  34. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/custom_operators/sidecar/__init__.py +0 -0
  35. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/custom_operators/sidecar/fuse.conf +0 -0
  36. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/custom_operators/sidecar/logger.py +0 -0
  37. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/custom_operators/sidecar/mount.py +0 -0
  38. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/custom_operators/sidecar/rclone.conf +0 -0
  39. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/custom_operators/sidecar/sidecar_lifecycle.sh +0 -0
  40. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/custom_operators/worker_operator.py +0 -0
  41. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/exceptions/__init__.py +0 -0
  42. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/exceptions/exceptions.py +0 -0
  43. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/logger.py +0 -0
  44. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/models/__init__.py +0 -0
  45. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/models/output_modifier.py +0 -0
  46. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/schemas/__init__.py +0 -0
  47. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/schemas/container_resources.py +0 -0
  48. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/schemas/deploy_mode.py +0 -0
  49. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/schemas/display_result.py +0 -0
  50. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/schemas/piece_metadata.py +0 -0
  51. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/schemas/shared_storage.py +0 -0
  52. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/scripts/__init__.py +0 -0
  53. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/scripts/build_docker_images_pieces.py +0 -0
  54. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/scripts/deprecated/create_docker_compose_file.py +0 -0
  55. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/scripts/deprecated/deprecated_piece_dry_run.py +0 -0
  56. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/scripts/deprecated/docker_compose_constants.py +0 -0
  57. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/scripts/deprecated/docker_compose_scripts.py +0 -0
  58. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/scripts/deprecated/run_piece_bash.py +0 -0
  59. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/scripts/load_piece.py +0 -0
  60. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/scripts/run_piece_branch_docker.py +0 -0
  61. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/scripts/run_piece_docker.py +0 -0
  62. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/storage/__init__.py +0 -0
  63. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/storage/s3.py +0 -0
  64. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/task.py +0 -0
  65. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/task_branch.py +0 -0
  66. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/testing/__init__.py +0 -0
  67. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/testing/dry_run.py +0 -0
  68. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/testing/http_client.py +0 -0
  69. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/testing/http_server.py +0 -0
  70. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/testing/utils.py +0 -0
  71. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/utils/__init__.py +0 -0
  72. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/utils/metadata_default.py +0 -0
  73. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/utils/piece_generator.py +0 -0
  74. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow/utils/workflow_shared_storage.py +0 -0
  75. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow_py.egg-info/SOURCES.txt +0 -0
  76. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow_py.egg-info/dependency_links.txt +0 -0
  77. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow_py.egg-info/entry_points.txt +0 -0
  78. {starflow_py-0.46.0 → starflow_py-0.47.0}/src/starflow_py.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: starflow-py
3
- Version: 0.46.0
3
+ Version: 0.47.0
4
4
  Summary: Python package for starflow.
5
5
  Author-email: Alexandre Lazar <alexandre.lazar@gmail.com>
6
6
  License:
@@ -218,7 +218,7 @@ Classifier: Topic :: Software Development :: User Interfaces
218
218
  Requires-Python: >=3.8
219
219
  Description-Content-Type: text/markdown
220
220
  License-File: LICENSE
221
- Requires-Dist: pydantic==2.4.2
221
+ Requires-Dist: pydantic>=2.11.0
222
222
  Requires-Dist: tomli==2.0.1
223
223
  Requires-Dist: tomli-w==1.0.0
224
224
  Requires-Dist: PyYAML==6.0.1
@@ -17,7 +17,7 @@ classifiers = [
17
17
 
18
18
  ]
19
19
  dependencies = [
20
- "pydantic==2.4.2",
20
+ "pydantic>=2.11.0",
21
21
  "tomli==2.0.1",
22
22
  "tomli-w==1.0.0",
23
23
  "PyYAML==6.0.1",
@@ -0,0 +1 @@
1
+ 0.47.0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: starflow-py
3
- Version: 0.46.0
3
+ Version: 0.47.0
4
4
  Summary: Python package for starflow.
5
5
  Author-email: Alexandre Lazar <alexandre.lazar@gmail.com>
6
6
  License:
@@ -218,7 +218,7 @@ Classifier: Topic :: Software Development :: User Interfaces
218
218
  Requires-Python: >=3.8
219
219
  Description-Content-Type: text/markdown
220
220
  License-File: LICENSE
221
- Requires-Dist: pydantic==2.4.2
221
+ Requires-Dist: pydantic>=2.11.0
222
222
  Requires-Dist: tomli==2.0.1
223
223
  Requires-Dist: tomli-w==1.0.0
224
224
  Requires-Dist: PyYAML==6.0.1
@@ -1,4 +1,4 @@
1
- pydantic==2.4.2
1
+ pydantic>=2.11.0
2
2
  tomli==2.0.1
3
3
  tomli-w==1.0.0
4
4
  PyYAML==6.0.1
@@ -1 +0,0 @@
1
- 0.46.0
File without changes
File without changes
File without changes