starflow-py 0.44.0__tar.gz → 0.46.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.
- {starflow_py-0.44.0 → starflow_py-0.46.0}/PKG-INFO +23 -23
- {starflow_py-0.44.0 → starflow_py-0.46.0}/pyproject.toml +22 -22
- starflow_py-0.46.0/src/starflow/VERSION +1 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow_py.egg-info/PKG-INFO +23 -23
- starflow_py-0.46.0/src/starflow_py.egg-info/requires.txt +38 -0
- starflow_py-0.44.0/src/starflow/VERSION +0 -1
- starflow_py-0.44.0/src/starflow_py.egg-info/requires.txt +0 -38
- {starflow_py-0.44.0 → starflow_py-0.46.0}/LICENSE +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/README.md +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/setup.cfg +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/__init__.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/actions/github_actions.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/base_piece.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/cli/__init__.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/cli/cli.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/cli/utils/__init__.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/cli/utils/config-starflow-local.toml +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/cli/utils/constants.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/cli/utils/docker-compose.yaml +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/cli/utils/pieces_repository.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/cli/utils/platform.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/client/__init__.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/client/github_rest_client.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/client/legacy/fs_client.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/client/legacy/s3_client.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/client/local_files_client.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/client/starflow_backend_client.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/custom_operators/__init__.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/custom_operators/deprecated/base_operator.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/custom_operators/deprecated/external_python_operator.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/custom_operators/docker_operator.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/custom_operators/k8s_branch_operator.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/custom_operators/k8s_operator.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/custom_operators/python_operator.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/custom_operators/sidecar/__init__.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/custom_operators/sidecar/fuse.conf +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/custom_operators/sidecar/logger.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/custom_operators/sidecar/mount.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/custom_operators/sidecar/rclone.conf +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/custom_operators/sidecar/sidecar_lifecycle.sh +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/custom_operators/worker_operator.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/exceptions/__init__.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/exceptions/exceptions.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/logger.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/models/__init__.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/models/output_modifier.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/schemas/__init__.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/schemas/container_resources.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/schemas/deploy_mode.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/schemas/display_result.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/schemas/piece_metadata.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/schemas/shared_storage.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/scripts/__init__.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/scripts/build_docker_images_pieces.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/scripts/deprecated/create_docker_compose_file.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/scripts/deprecated/deprecated_piece_dry_run.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/scripts/deprecated/docker_compose_constants.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/scripts/deprecated/docker_compose_scripts.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/scripts/deprecated/run_piece_bash.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/scripts/load_piece.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/scripts/run_piece_branch_docker.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/scripts/run_piece_docker.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/storage/__init__.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/storage/s3.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/task.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/task_branch.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/testing/__init__.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/testing/dry_run.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/testing/http_client.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/testing/http_server.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/testing/utils.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/utils/__init__.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/utils/metadata_default.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/utils/piece_generator.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/utils/workflow_shared_storage.py +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow_py.egg-info/SOURCES.txt +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow_py.egg-info/dependency_links.txt +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow_py.egg-info/entry_points.txt +0 -0
- {starflow_py-0.44.0 → starflow_py-0.46.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.
|
|
3
|
+
Version: 0.46.0
|
|
4
4
|
Summary: Python package for starflow.
|
|
5
5
|
Author-email: Alexandre Lazar <alexandre.lazar@gmail.com>
|
|
6
6
|
License:
|
|
@@ -222,37 +222,37 @@ Requires-Dist: pydantic==2.4.2
|
|
|
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
|
|
225
|
-
Requires-Dist: jsonschema
|
|
225
|
+
Requires-Dist: jsonschema>=4.19.1
|
|
226
226
|
Requires-Dist: click==8.1.3
|
|
227
227
|
Requires-Dist: rich>=13.4.2
|
|
228
228
|
Requires-Dist: colorama==0.4.6
|
|
229
229
|
Provides-Extra: cli
|
|
230
|
-
Requires-Dist: urllib3
|
|
231
|
-
Requires-Dist: cryptography
|
|
232
|
-
Requires-Dist: pyOpenSSL
|
|
233
|
-
Requires-Dist: PyGithub
|
|
230
|
+
Requires-Dist: urllib3>=2.3.0; extra == "cli"
|
|
231
|
+
Requires-Dist: cryptography>=44.0.0; extra == "cli"
|
|
232
|
+
Requires-Dist: pyOpenSSL>=25.0.0; extra == "cli"
|
|
233
|
+
Requires-Dist: PyGithub>=2.5.0; extra == "cli"
|
|
234
234
|
Requires-Dist: docker>=7.1.0; extra == "cli"
|
|
235
|
-
Requires-Dist: kubernetes==
|
|
236
|
-
Requires-Dist: bottle
|
|
237
|
-
Requires-Dist: requests
|
|
238
|
-
Requires-Dist: python-keycloak==5.
|
|
235
|
+
Requires-Dist: kubernetes==33.1.0; extra == "cli"
|
|
236
|
+
Requires-Dist: bottle>=0.13.2; extra == "cli"
|
|
237
|
+
Requires-Dist: requests>=2.31.0; extra == "cli"
|
|
238
|
+
Requires-Dist: python-keycloak==5.8.1; extra == "cli"
|
|
239
239
|
Provides-Extra: airflow
|
|
240
|
-
Requires-Dist: apache-airflow==
|
|
241
|
-
Requires-Dist: apache-airflow-providers-cncf-kubernetes==10.
|
|
242
|
-
Requires-Dist: apache-airflow-providers-docker==
|
|
240
|
+
Requires-Dist: apache-airflow==3.0.6; extra == "airflow"
|
|
241
|
+
Requires-Dist: apache-airflow-providers-cncf-kubernetes==10.8.0; extra == "airflow"
|
|
242
|
+
Requires-Dist: apache-airflow-providers-docker==4.4.2; extra == "airflow"
|
|
243
243
|
Requires-Dist: python-keycloak==5.2.0; extra == "airflow"
|
|
244
244
|
Provides-Extra: full
|
|
245
|
-
Requires-Dist: bottle
|
|
246
|
-
Requires-Dist: urllib3
|
|
247
|
-
Requires-Dist: cryptography
|
|
248
|
-
Requires-Dist: pyOpenSSL
|
|
249
|
-
Requires-Dist: PyGithub
|
|
245
|
+
Requires-Dist: bottle>=0.13.2; extra == "full"
|
|
246
|
+
Requires-Dist: urllib3>=2.3.0; extra == "full"
|
|
247
|
+
Requires-Dist: cryptography>=44.0.0; extra == "full"
|
|
248
|
+
Requires-Dist: pyOpenSSL>=25.0.0; extra == "full"
|
|
249
|
+
Requires-Dist: PyGithub>=2.5.0; extra == "full"
|
|
250
250
|
Requires-Dist: docker>=7.1.0; extra == "full"
|
|
251
|
-
Requires-Dist: kubernetes==
|
|
252
|
-
Requires-Dist: apache-airflow==
|
|
253
|
-
Requires-Dist: apache-airflow-providers-cncf-kubernetes==10.
|
|
254
|
-
Requires-Dist: apache-airflow-providers-docker==
|
|
255
|
-
Requires-Dist: python-keycloak==5.
|
|
251
|
+
Requires-Dist: kubernetes==33.1.0; extra == "full"
|
|
252
|
+
Requires-Dist: apache-airflow==3.0.6; extra == "full"
|
|
253
|
+
Requires-Dist: apache-airflow-providers-cncf-kubernetes==10.8.0; extra == "full"
|
|
254
|
+
Requires-Dist: apache-airflow-providers-docker==4.4.2; extra == "full"
|
|
255
|
+
Requires-Dist: python-keycloak==5.8.1; extra == "full"
|
|
256
256
|
|
|
257
257
|
<p align="center">
|
|
258
258
|
<img src="media/brand/main_logo.png" width="450" title="starflow">
|
|
@@ -21,7 +21,7 @@ dependencies = [
|
|
|
21
21
|
"tomli==2.0.1",
|
|
22
22
|
"tomli-w==1.0.0",
|
|
23
23
|
"PyYAML==6.0.1",
|
|
24
|
-
"jsonschema
|
|
24
|
+
"jsonschema>=4.19.1",
|
|
25
25
|
"click==8.1.3",
|
|
26
26
|
"rich>=13.4.2",
|
|
27
27
|
"colorama==0.4.6",
|
|
@@ -61,32 +61,32 @@ starflow = "starflow.cli.cli:cli"
|
|
|
61
61
|
|
|
62
62
|
[project.optional-dependencies]
|
|
63
63
|
cli = [
|
|
64
|
-
"urllib3
|
|
65
|
-
"cryptography
|
|
66
|
-
"pyOpenSSL
|
|
67
|
-
"PyGithub
|
|
64
|
+
"urllib3>=2.3.0",
|
|
65
|
+
"cryptography>=44.0.0",
|
|
66
|
+
"pyOpenSSL>=25.0.0",
|
|
67
|
+
"PyGithub>=2.5.0",
|
|
68
68
|
"docker>=7.1.0",
|
|
69
|
-
"kubernetes==
|
|
70
|
-
"bottle
|
|
71
|
-
"requests
|
|
72
|
-
"python-keycloak==5.
|
|
69
|
+
"kubernetes==33.1.0",
|
|
70
|
+
"bottle>=0.13.2",
|
|
71
|
+
"requests>=2.31.0",
|
|
72
|
+
"python-keycloak==5.8.1"
|
|
73
73
|
]
|
|
74
74
|
airflow = [
|
|
75
|
-
"apache-airflow==
|
|
76
|
-
"apache-airflow-providers-cncf-kubernetes==10.
|
|
77
|
-
"apache-airflow-providers-docker==
|
|
75
|
+
"apache-airflow==3.0.6",
|
|
76
|
+
"apache-airflow-providers-cncf-kubernetes==10.8.0",
|
|
77
|
+
"apache-airflow-providers-docker==4.4.2",
|
|
78
78
|
"python-keycloak==5.2.0"
|
|
79
79
|
]
|
|
80
80
|
full = [
|
|
81
|
-
"bottle
|
|
82
|
-
"urllib3
|
|
83
|
-
"cryptography
|
|
84
|
-
"pyOpenSSL
|
|
85
|
-
"PyGithub
|
|
81
|
+
"bottle>=0.13.2",
|
|
82
|
+
"urllib3>=2.3.0",
|
|
83
|
+
"cryptography>=44.0.0",
|
|
84
|
+
"pyOpenSSL>=25.0.0",
|
|
85
|
+
"PyGithub>=2.5.0",
|
|
86
86
|
"docker>=7.1.0",
|
|
87
|
-
"kubernetes==
|
|
88
|
-
"apache-airflow==
|
|
89
|
-
"apache-airflow-providers-cncf-kubernetes==10.
|
|
90
|
-
"apache-airflow-providers-docker==
|
|
91
|
-
"python-keycloak==5.
|
|
87
|
+
"kubernetes==33.1.0",
|
|
88
|
+
"apache-airflow==3.0.6",
|
|
89
|
+
"apache-airflow-providers-cncf-kubernetes==10.8.0",
|
|
90
|
+
"apache-airflow-providers-docker==4.4.2",
|
|
91
|
+
"python-keycloak==5.8.1"
|
|
92
92
|
]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.46.0
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: starflow-py
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.46.0
|
|
4
4
|
Summary: Python package for starflow.
|
|
5
5
|
Author-email: Alexandre Lazar <alexandre.lazar@gmail.com>
|
|
6
6
|
License:
|
|
@@ -222,37 +222,37 @@ Requires-Dist: pydantic==2.4.2
|
|
|
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
|
|
225
|
-
Requires-Dist: jsonschema
|
|
225
|
+
Requires-Dist: jsonschema>=4.19.1
|
|
226
226
|
Requires-Dist: click==8.1.3
|
|
227
227
|
Requires-Dist: rich>=13.4.2
|
|
228
228
|
Requires-Dist: colorama==0.4.6
|
|
229
229
|
Provides-Extra: cli
|
|
230
|
-
Requires-Dist: urllib3
|
|
231
|
-
Requires-Dist: cryptography
|
|
232
|
-
Requires-Dist: pyOpenSSL
|
|
233
|
-
Requires-Dist: PyGithub
|
|
230
|
+
Requires-Dist: urllib3>=2.3.0; extra == "cli"
|
|
231
|
+
Requires-Dist: cryptography>=44.0.0; extra == "cli"
|
|
232
|
+
Requires-Dist: pyOpenSSL>=25.0.0; extra == "cli"
|
|
233
|
+
Requires-Dist: PyGithub>=2.5.0; extra == "cli"
|
|
234
234
|
Requires-Dist: docker>=7.1.0; extra == "cli"
|
|
235
|
-
Requires-Dist: kubernetes==
|
|
236
|
-
Requires-Dist: bottle
|
|
237
|
-
Requires-Dist: requests
|
|
238
|
-
Requires-Dist: python-keycloak==5.
|
|
235
|
+
Requires-Dist: kubernetes==33.1.0; extra == "cli"
|
|
236
|
+
Requires-Dist: bottle>=0.13.2; extra == "cli"
|
|
237
|
+
Requires-Dist: requests>=2.31.0; extra == "cli"
|
|
238
|
+
Requires-Dist: python-keycloak==5.8.1; extra == "cli"
|
|
239
239
|
Provides-Extra: airflow
|
|
240
|
-
Requires-Dist: apache-airflow==
|
|
241
|
-
Requires-Dist: apache-airflow-providers-cncf-kubernetes==10.
|
|
242
|
-
Requires-Dist: apache-airflow-providers-docker==
|
|
240
|
+
Requires-Dist: apache-airflow==3.0.6; extra == "airflow"
|
|
241
|
+
Requires-Dist: apache-airflow-providers-cncf-kubernetes==10.8.0; extra == "airflow"
|
|
242
|
+
Requires-Dist: apache-airflow-providers-docker==4.4.2; extra == "airflow"
|
|
243
243
|
Requires-Dist: python-keycloak==5.2.0; extra == "airflow"
|
|
244
244
|
Provides-Extra: full
|
|
245
|
-
Requires-Dist: bottle
|
|
246
|
-
Requires-Dist: urllib3
|
|
247
|
-
Requires-Dist: cryptography
|
|
248
|
-
Requires-Dist: pyOpenSSL
|
|
249
|
-
Requires-Dist: PyGithub
|
|
245
|
+
Requires-Dist: bottle>=0.13.2; extra == "full"
|
|
246
|
+
Requires-Dist: urllib3>=2.3.0; extra == "full"
|
|
247
|
+
Requires-Dist: cryptography>=44.0.0; extra == "full"
|
|
248
|
+
Requires-Dist: pyOpenSSL>=25.0.0; extra == "full"
|
|
249
|
+
Requires-Dist: PyGithub>=2.5.0; extra == "full"
|
|
250
250
|
Requires-Dist: docker>=7.1.0; extra == "full"
|
|
251
|
-
Requires-Dist: kubernetes==
|
|
252
|
-
Requires-Dist: apache-airflow==
|
|
253
|
-
Requires-Dist: apache-airflow-providers-cncf-kubernetes==10.
|
|
254
|
-
Requires-Dist: apache-airflow-providers-docker==
|
|
255
|
-
Requires-Dist: python-keycloak==5.
|
|
251
|
+
Requires-Dist: kubernetes==33.1.0; extra == "full"
|
|
252
|
+
Requires-Dist: apache-airflow==3.0.6; extra == "full"
|
|
253
|
+
Requires-Dist: apache-airflow-providers-cncf-kubernetes==10.8.0; extra == "full"
|
|
254
|
+
Requires-Dist: apache-airflow-providers-docker==4.4.2; extra == "full"
|
|
255
|
+
Requires-Dist: python-keycloak==5.8.1; extra == "full"
|
|
256
256
|
|
|
257
257
|
<p align="center">
|
|
258
258
|
<img src="media/brand/main_logo.png" width="450" title="starflow">
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
pydantic==2.4.2
|
|
2
|
+
tomli==2.0.1
|
|
3
|
+
tomli-w==1.0.0
|
|
4
|
+
PyYAML==6.0.1
|
|
5
|
+
jsonschema>=4.19.1
|
|
6
|
+
click==8.1.3
|
|
7
|
+
rich>=13.4.2
|
|
8
|
+
colorama==0.4.6
|
|
9
|
+
|
|
10
|
+
[airflow]
|
|
11
|
+
apache-airflow==3.0.6
|
|
12
|
+
apache-airflow-providers-cncf-kubernetes==10.8.0
|
|
13
|
+
apache-airflow-providers-docker==4.4.2
|
|
14
|
+
python-keycloak==5.2.0
|
|
15
|
+
|
|
16
|
+
[cli]
|
|
17
|
+
urllib3>=2.3.0
|
|
18
|
+
cryptography>=44.0.0
|
|
19
|
+
pyOpenSSL>=25.0.0
|
|
20
|
+
PyGithub>=2.5.0
|
|
21
|
+
docker>=7.1.0
|
|
22
|
+
kubernetes==33.1.0
|
|
23
|
+
bottle>=0.13.2
|
|
24
|
+
requests>=2.31.0
|
|
25
|
+
python-keycloak==5.8.1
|
|
26
|
+
|
|
27
|
+
[full]
|
|
28
|
+
bottle>=0.13.2
|
|
29
|
+
urllib3>=2.3.0
|
|
30
|
+
cryptography>=44.0.0
|
|
31
|
+
pyOpenSSL>=25.0.0
|
|
32
|
+
PyGithub>=2.5.0
|
|
33
|
+
docker>=7.1.0
|
|
34
|
+
kubernetes==33.1.0
|
|
35
|
+
apache-airflow==3.0.6
|
|
36
|
+
apache-airflow-providers-cncf-kubernetes==10.8.0
|
|
37
|
+
apache-airflow-providers-docker==4.4.2
|
|
38
|
+
python-keycloak==5.8.1
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
0.44.0
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
pydantic==2.4.2
|
|
2
|
-
tomli==2.0.1
|
|
3
|
-
tomli-w==1.0.0
|
|
4
|
-
PyYAML==6.0.1
|
|
5
|
-
jsonschema==4.18.0
|
|
6
|
-
click==8.1.3
|
|
7
|
-
rich>=13.4.2
|
|
8
|
-
colorama==0.4.6
|
|
9
|
-
|
|
10
|
-
[airflow]
|
|
11
|
-
apache-airflow==2.10.4
|
|
12
|
-
apache-airflow-providers-cncf-kubernetes==10.1.0
|
|
13
|
-
apache-airflow-providers-docker==3.14.1
|
|
14
|
-
python-keycloak==5.2.0
|
|
15
|
-
|
|
16
|
-
[cli]
|
|
17
|
-
urllib3==2.3.0
|
|
18
|
-
cryptography==44.0.0
|
|
19
|
-
pyOpenSSL==25.0.0
|
|
20
|
-
PyGithub==2.5.0
|
|
21
|
-
docker>=7.1.0
|
|
22
|
-
kubernetes==31.0.0
|
|
23
|
-
bottle==0.13.2
|
|
24
|
-
requests==2.31.0
|
|
25
|
-
python-keycloak==5.2.0
|
|
26
|
-
|
|
27
|
-
[full]
|
|
28
|
-
bottle==0.13.2
|
|
29
|
-
urllib3==2.3.0
|
|
30
|
-
cryptography==44.0.0
|
|
31
|
-
pyOpenSSL==25.0.0
|
|
32
|
-
PyGithub==2.5.0
|
|
33
|
-
docker>=7.1.0
|
|
34
|
-
kubernetes==31.0.0
|
|
35
|
-
apache-airflow==2.10.4
|
|
36
|
-
apache-airflow-providers-cncf-kubernetes==10.1.0
|
|
37
|
-
apache-airflow-providers-docker==3.14.1
|
|
38
|
-
python-keycloak==5.2.0
|
|
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
|
{starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/custom_operators/deprecated/base_operator.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/custom_operators/k8s_branch_operator.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
|
{starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/custom_operators/sidecar/sidecar_lifecycle.sh
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/scripts/build_docker_images_pieces.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{starflow_py-0.44.0 → starflow_py-0.46.0}/src/starflow/scripts/deprecated/docker_compose_scripts.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
|
|
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
|