polyaxon 2.6.0rc0__tar.gz → 2.6.1__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.
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/PKG-INFO +2 -2
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_cli/operations.py +1 -1
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_cli/projects.py +2 -2
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_compiler/contexts/contexts.py +5 -5
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_compiler/contexts/dask_job.py +1 -1
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_compiler/contexts/kubeflow/mpi_job.py +1 -1
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_compiler/contexts/kubeflow/mx_job.py +1 -1
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_compiler/contexts/kubeflow/paddle_job.py +1 -1
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_compiler/contexts/kubeflow/pytroch_job.py +1 -1
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_compiler/contexts/kubeflow/tf_job.py +1 -1
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_compiler/contexts/kubeflow/xgb_job.py +1 -1
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_compiler/contexts/ray_job.py +1 -1
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_compiler/resolver/agent.py +1 -1
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_compiler/resolver/runtime.py +1 -1
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_deploy/schemas/ui.py +3 -1
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_docker/converter/base/base.py +1 -1
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_docker/converter/base/env_vars.py +1 -1
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_docker/converter/converters/job.py +1 -1
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_docker/converter/converters/service.py +1 -1
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/environment/__init__.py +5 -4
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/io/io.py +2 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/matrix/params.py +1 -1
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/operations/operation.py +0 -1
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/params/params.py +2 -2
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/run/dag.py +6 -6
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/run/resources.py +1 -1
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_fs/fs.py +1 -1
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/converter/base/containers.py +1 -1
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/converter/converters/dask_job.py +1 -1
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/converter/converters/job.py +1 -1
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/converter/converters/kubeflow/mpi_job.py +1 -1
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/converter/converters/kubeflow/mx_job.py +1 -1
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/converter/converters/kubeflow/paddle_job.py +1 -1
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/converter/converters/kubeflow/pytroch_job.py +1 -1
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/converter/converters/kubeflow/tf_job.py +1 -1
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/converter/converters/kubeflow/xgboost_job.py +1 -1
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/converter/converters/ray_job.py +1 -2
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/converter/converters/service.py +1 -1
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/k8s_validation.py +16 -16
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/logging/async_monitor.py +4 -4
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/manager/async_manager.py +5 -3
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/manager/manager.py +6 -6
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_local_process/converter/base/env_vars.py +1 -1
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_local_process/converter/base/init.py +1 -1
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_local_process/converter/base/mounts.py +0 -2
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_local_process/converter/converters/job.py +1 -1
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_local_process/converter/converters/service.py +1 -1
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_managers/project.py +3 -2
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_polyaxonfile/check.py +4 -4
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_polyaxonfile/specs/compiled_operation.py +3 -5
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_polyaxonfile/specs/libs/parser.py +1 -3
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_polyaxonfile/specs/libs/validator.py +1 -1
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_polyaxonfile/specs/operation.py +2 -2
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_pql/manager.py +1 -1
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_pql/parser.py +29 -26
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_runner/agent/base_agent.py +1 -2
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_runner/converter/init/artifacts.py +3 -2
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_runner/converter/init/tensorboard.py +1 -1
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_schemas/client.py +1 -1
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/api/agents_v1_api.py +56 -80
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/api/artifacts_stores_v1_api.py +2 -2
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/api/auth_v1_api.py +2 -6
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/api/connections_v1_api.py +16 -20
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/api/dashboards_v1_api.py +14 -14
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/api/organizations_v1_api.py +97 -143
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/api/presets_v1_api.py +18 -26
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/api/project_dashboards_v1_api.py +17 -19
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/api/project_searches_v1_api.py +20 -28
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/api/projects_v1_api.py +74 -92
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/api/queues_v1_api.py +22 -30
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/api/runs_v1_api.py +157 -207
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/api/searches_v1_api.py +16 -20
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/api/service_accounts_v1_api.py +30 -38
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/api/tags_v1_api.py +19 -25
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/api/teams_v1_api.py +64 -90
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/api/users_v1_api.py +17 -19
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/api/versions_v1_api.py +4 -4
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/async_client/rest.py +1 -3
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_section_spec.py +1 -1
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/sync_client/api_client.py +2 -6
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/sync_client/rest.py +4 -8
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/pkg.py +1 -1
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon.egg-info/PKG-INFO +2 -2
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon.egg-info/requires.txt +2 -2
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/setup.cfg +0 -22
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/MANIFEST.in +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/__main__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_auxiliaries/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_auxiliaries/cleaner.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_auxiliaries/default_scheduling.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_auxiliaries/init.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_auxiliaries/notifier.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_auxiliaries/sidecar.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_auxiliaries/tuner.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_cli/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_cli/admin.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_cli/artifacts.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_cli/auth.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_cli/check.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_cli/completion.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_cli/components.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_cli/config.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_cli/dashboard.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_cli/errors.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_cli/init.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_cli/models.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_cli/options.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_cli/port_forward.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_cli/project_versions.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_cli/run.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_cli/services/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_cli/services/agent.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_cli/services/clean_artifacts.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_cli/services/docker.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_cli/services/initializer.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_cli/services/notifier.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_cli/services/sidecar.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_cli/services/tuner.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_cli/services/wait.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_cli/session.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_cli/utils.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_cli/version.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_client/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_client/client.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_client/decorators/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_client/decorators/client_call_handler.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_client/decorators/errors.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_client/decorators/is_managed.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_client/impersonate.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_client/init.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_client/mixin.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_client/project.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_client/run.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_client/store.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_client/transport/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_client/transport/http_transport.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_client/transport/periodic_transport.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_client/transport/retry_transport.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_client/transport/socket_transport.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_client/transport/threaded_transport.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_client/transport/ws_client.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_client/workers/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_client/workers/base_worker.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_client/workers/periodic_worker.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_client/workers/queue_worker.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_compiler/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_compiler/contexts/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_compiler/contexts/base.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_compiler/contexts/job.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_compiler/contexts/kubeflow/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_compiler/contexts/service.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_compiler/lineage/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_compiler/lineage/artifacts_collector.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_compiler/lineage/collector.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_compiler/lineage/io_collector.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_compiler/resolver/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_compiler/resolver/resolver.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_config/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_config/manager.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_config/parser.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_config/reader.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_config/spec.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_connections/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_connections/kinds.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_connections/schemas.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_constants/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_constants/globals.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_constants/metadata.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_containers/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_containers/names.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_containers/pull_policy.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_containers/statuses.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_contexts/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_contexts/keys.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_contexts/params.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_contexts/paths.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_contexts/refs.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_contexts/sections.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_deploy/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_deploy/operators/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_deploy/operators/cmd_operator.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_deploy/operators/compose.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_deploy/operators/conda.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_deploy/operators/docker.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_deploy/operators/helm.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_deploy/operators/kubectl.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_deploy/operators/pip.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_deploy/reader.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_deploy/schemas/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_deploy/schemas/auth.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_deploy/schemas/celery.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_deploy/schemas/deployment.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_deploy/schemas/deployment_types.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_deploy/schemas/email.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_deploy/schemas/ingress.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_deploy/schemas/intervals.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_deploy/schemas/operators.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_deploy/schemas/proxy.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_deploy/schemas/rbac.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_deploy/schemas/root_user.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_deploy/schemas/security_context.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_deploy/schemas/service.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_deploy/schemas/service_types.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_deploy/schemas/ssl.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_dist.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_docker/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_docker/agent.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_docker/builder/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_docker/builder/builder.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_docker/builder/dockerfile.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_docker/builder/generator.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_docker/converter/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_docker/converter/base/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_docker/converter/base/containers.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_docker/converter/base/init.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_docker/converter/base/main.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_docker/converter/base/mounts.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_docker/converter/converters/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_docker/converter/mixins.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_docker/docker_types.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_docker/executor.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_env_vars/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_env_vars/getters/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_env_vars/getters/agent.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_env_vars/getters/owner_entity.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_env_vars/getters/project.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_env_vars/getters/queue.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_env_vars/getters/run.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_env_vars/getters/user.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_env_vars/getters/versioned_entity.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_env_vars/keys.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/builds/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/cache/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/cache/enums.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/component/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/component/base.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/component/component.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/component/component_reference.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/containers/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/containers/container.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/dags/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/early_stopping/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/early_stopping/policies.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/events/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/events/enums.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/hooks/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/init/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/io/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/joins/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/matrix/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/matrix/base.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/matrix/bayes.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/matrix/enums.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/matrix/grid_search.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/matrix/hyperband.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/matrix/hyperopt.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/matrix/iterative.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/matrix/mapping.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/matrix/random_search.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/matrix/tuner.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/mounts/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/mounts/artifacts_mounts.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/notifications/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/operations/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/operations/base.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/operations/compiled_operation.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/operators.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/optimization/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/optimization/enums.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/params/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/params/ops_params.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/plugins/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/references/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/references/dag.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/references/hub.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/references/mixin.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/references/path.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/references/url.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/run/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/run/base.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/run/cleaner.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/run/dask/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/run/dask/dask.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/run/dask/replica.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/run/enums.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/run/job.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/run/kubeflow/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/run/kubeflow/clean_pod_policy.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/run/kubeflow/mpi_job.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/run/kubeflow/mx_job.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/run/kubeflow/paddle_job.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/run/kubeflow/pytorch_job.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/run/kubeflow/replica.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/run/kubeflow/scheduling_policy.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/run/kubeflow/tf_job.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/run/kubeflow/xgboost_job.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/run/notifier.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/run/patch.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/run/ray/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/run/ray/ray.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/run/ray/replica.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/run/service.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/run/tuner.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/run/utils.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/schedules/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/schedules/cron.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/schedules/datetime.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/schedules/enums.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/schedules/interval.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/templates/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/termination/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_flow/trigger_policies.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_fs/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_fs/async_manager.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_fs/manager.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_fs/tar.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_fs/types.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_fs/utils.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_fs/watcher.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_init/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_init/artifacts.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_init/auth.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_init/dockerfile.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_init/file.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_init/git.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_init/tensorboard.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/agent/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/agent/agent.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/agent/async_agent.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/constants.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/converter/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/converter/base/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/converter/base/base.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/converter/base/env_vars.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/converter/base/init.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/converter/base/main.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/converter/base/mounts.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/converter/base/sidecar.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/converter/common/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/converter/common/accelerators.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/converter/common/annotations.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/converter/common/volumes.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/converter/converters/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/converter/converters/helpers.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/converter/converters/kubeflow/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/converter/mixins.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/converter/pod/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/converter/pod/spec.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/converter/pod/volumes.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/custom_resources/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/custom_resources/crd.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/custom_resources/dask_job.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/custom_resources/job.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/custom_resources/kubeflow/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/custom_resources/kubeflow/common.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/custom_resources/kubeflow/mpi_job.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/custom_resources/kubeflow/mx_job.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/custom_resources/kubeflow/paddle_job.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/custom_resources/kubeflow/pytorch_job.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/custom_resources/kubeflow/tf_job.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/custom_resources/kubeflow/xgb_job.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/custom_resources/operation.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/custom_resources/ray_job.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/custom_resources/service.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/custom_resources/setter.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/events.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/executor/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/executor/async_executor.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/executor/base.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/executor/executor.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/k8s_schemas.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/logging/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/logging/monitor.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/manager/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/manager/base.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/monitor.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/namespace.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/nodes.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/pods.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/replica.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_local_process/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_local_process/agent.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_local_process/converter/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_local_process/converter/base/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_local_process/converter/base/base.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_local_process/converter/base/containers.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_local_process/converter/base/main.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_local_process/converter/converters/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_local_process/converter/mixins.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_local_process/executor.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_local_process/process_types.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_managers/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_managers/agent.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_managers/auth.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_managers/cli.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_managers/client.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_managers/compose.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_managers/deploy.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_managers/git.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_managers/home.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_managers/ignore.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_managers/run.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_managers/user.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_notifiers/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_notifiers/spec.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_operations/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_operations/cleaner.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_operations/notifier.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_operations/tuner.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_plugins/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_plugins/sentry.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_polyaxonfile/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_polyaxonfile/manager/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_polyaxonfile/manager/operations.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_polyaxonfile/manager/workflows.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_polyaxonfile/params.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_polyaxonfile/specs/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_polyaxonfile/specs/base.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_polyaxonfile/specs/component.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_polyaxonfile/specs/kinds.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_polyaxonfile/specs/libs/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_polyaxonfile/specs/libs/engine.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_polyaxonfile/specs/sections.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_pql/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_pql/builder.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_runner/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_runner/agent/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_runner/agent/async_agent.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_runner/agent/client.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_runner/agent/sync_agent.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_runner/converter/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_runner/converter/common/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_runner/converter/common/constants.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_runner/converter/common/containers.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_runner/converter/common/volumes.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_runner/converter/converter.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_runner/converter/init/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_runner/converter/init/dockerfile.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_runner/converter/init/file.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_runner/converter/init/git.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_runner/converter/init/store.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_runner/converter/types.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_runner/executor.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_runner/kinds.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_schemas/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_schemas/agent.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_schemas/authentication.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_schemas/base.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_schemas/checks.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_schemas/cli.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_schemas/compatibility.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_schemas/container_resources.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_schemas/home.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_schemas/installation.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_schemas/lifecycle.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_schemas/log_handler.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_schemas/services.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_schemas/types/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_schemas/types/artifacts.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_schemas/types/base.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_schemas/types/clipped.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_schemas/types/dockerfile.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_schemas/types/event.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_schemas/types/file.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_schemas/types/git.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_schemas/types/tensorboard.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_schemas/user.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_schemas/version.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/api/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/async_client/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/async_client/api_client.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/base_api.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/configuration.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_activity.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_agent.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_agent_reconcile_body_request.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_agent_state_response.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_agent_state_response_agent_state.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_agent_status_body_request.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_analytics_spec.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_artifact_tree.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_auth.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_cloning.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_connection_response.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_dashboard.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_dashboard_spec.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_entities_tags.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_entities_transfer.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_entity_notification_body.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_entity_stage_body_request.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_entity_status_body_request.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_events_response.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_list_activities_response.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_list_agents_response.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_list_bookmarks_response.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_list_connections_response.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_list_dashboards_response.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_list_organization_members_response.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_list_organizations_response.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_list_presets_response.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_list_project_versions_response.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_list_projects_response.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_list_queues_response.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_list_run_artifacts_response.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_list_run_connections_response.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_list_run_edges_response.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_list_runs_response.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_list_searches_response.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_list_service_accounts_response.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_list_tags_response.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_list_team_members_response.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_list_teams_response.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_list_token_response.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_operation_body.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_organization.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_organization_member.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_password_change.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_pipeline.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_preset.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_project.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_project_settings.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_project_version.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_queue.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_run.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_run_connection.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_run_edge.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_run_edge_lineage.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_run_edges_graph.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_run_reference_catalog.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_run_settings.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_search.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_search_spec.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_service_account.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_settings_catalog.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_tag.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_team.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_team_member.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_team_settings.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_token.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_trial_start.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_user.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_user_access.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_user_email.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_user_singup.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/schemas/v1_uuids.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sdk/sync_client/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_services/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_services/auth.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_services/headers.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_services/values.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sidecar/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sidecar/container/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sidecar/container/intervals.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sidecar/container/monitors/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sidecar/container/monitors/artifacts.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sidecar/container/monitors/logs.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sidecar/container/monitors/spec.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sidecar/ignore.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_sidecar/processor.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_utils/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_utils/cache.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_utils/cli_constants.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_utils/fixtures/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_utils/fixtures/backfill.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_utils/fixtures/bo.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_utils/fixtures/build.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_utils/fixtures/grid.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_utils/fixtures/jobs.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_utils/fixtures/mapping.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_utils/fixtures/pipelines.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_utils/fixtures/schedule.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_utils/fixtures/services.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_utils/formatting.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_utils/fqn_utils.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_utils/host_utils.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_utils/test_utils.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_utils/urls_utils.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_vendor/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_vendor/shell_pty.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/api.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/cli.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/client.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/docker.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/exceptions.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/fs.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/k8s.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/logger.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/polyaxonfile.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/py.typed +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/schemas.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/settings.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/tracking/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/tracking/contrib/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/tracking/contrib/fastai.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/tracking/contrib/fastai_v1.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/tracking/contrib/hugging_face.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/tracking/contrib/ignite.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/tracking/contrib/keras.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/tracking/contrib/lightgbm.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/tracking/contrib/pytorch_lightning.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/tracking/contrib/scikit.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/tracking/contrib/tensorboard.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/tracking/contrib/tensorflow.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/tracking/contrib/xgboost.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/tracking/run.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/tuners/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/tuners/bayesian_optimization.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/tuners/grid_search.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/tuners/hyperband.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/tuners/hyperopt.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/tuners/mapping.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/tuners/random_search.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/types.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon.egg-info/SOURCES.txt +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon.egg-info/dependency_links.txt +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon.egg-info/entry_points.txt +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon.egg-info/top_level.txt +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon_sdk/__init__.py +0 -0
- {polyaxon-2.6.0rc0 → polyaxon-2.6.1}/setup.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: polyaxon
|
3
|
-
Version: 2.6.
|
3
|
+
Version: 2.6.1
|
4
4
|
Summary: Command Line Interface (CLI) and client to interact with Polyaxon API.
|
5
5
|
Home-page: https://github.com/polyaxon/polyaxon
|
6
6
|
Author: Polyaxon, Inc.
|
@@ -51,7 +51,7 @@ Provides-Extra: sandbox
|
|
51
51
|
[](https://polyaxon.com/slack/)
|
52
52
|
|
53
53
|
[](https://polyaxon.com/docs/)
|
54
|
-
[](https://polyaxon.com/docs/releases/2-6/)
|
55
55
|
[](https://github.com/polyaxon/polyaxon/issues)
|
56
56
|
[](https://github.com/orgs/polyaxon/projects/5)
|
57
57
|
|
@@ -1466,7 +1466,7 @@ def logs(ctx, project, uid, follow, hide_time, all_containers, all_info, offline
|
|
1466
1466
|
)
|
1467
1467
|
|
1468
1468
|
try:
|
1469
|
-
from traceml.logging.streamer import
|
1469
|
+
from traceml.logging.streamer import load_logs_from_path
|
1470
1470
|
|
1471
1471
|
load_logs_from_path(
|
1472
1472
|
logs_path=logs_path,
|
@@ -46,7 +46,7 @@ def project(ctx, _project): # pylint:disable=redefined-outer-name
|
|
46
46
|
@click.option(
|
47
47
|
*OPTIONS_NAME["args"],
|
48
48
|
type=str,
|
49
|
-
help="The project name, e.g. 'mnist' or 'acme/mnist'."
|
49
|
+
help="The project name, e.g. 'mnist' or 'acme/mnist'.",
|
50
50
|
)
|
51
51
|
@click.option("--description", type=str, help="Description of the project.")
|
52
52
|
@click.option("--tags", type=str, help="Tags of the project (comma separated values).")
|
@@ -287,7 +287,7 @@ def delete(ctx, _project, yes):
|
|
287
287
|
@click.option(
|
288
288
|
*OPTIONS_NAME["args"],
|
289
289
|
type=str,
|
290
|
-
help="Name of the project, must be unique for the same user."
|
290
|
+
help="Name of the project, must be unique for the same user.",
|
291
291
|
)
|
292
292
|
@click.option("--description", type=str, help="Description of the project.")
|
293
293
|
@click.option("--tags", type=str, help="Tags of the project (comma separated values).")
|
@@ -98,24 +98,24 @@ def resolve_globals_contexts(
|
|
98
98
|
run_outputs_path = ctx_paths.CONTEXT_MOUNT_RUN_OUTPUTS_FORMAT.format(run_path)
|
99
99
|
resolved_contexts[ctx_sections.GLOBALS][
|
100
100
|
ctx_keys.RUN_ARTIFACTS_PATH
|
101
|
-
] = run_artifacts_path
|
101
|
+
] = run_artifacts_path # fmt: skip
|
102
102
|
resolved_contexts[ctx_sections.GLOBALS][
|
103
103
|
ctx_keys.RUN_OUTPUTS_PATH
|
104
|
-
] = run_outputs_path
|
104
|
+
] = run_outputs_path # fmt: skip
|
105
105
|
elif artifacts_store:
|
106
106
|
run_artifacts_path = os.path.join(artifacts_store.store_path, run_path)
|
107
107
|
run_outputs_path = os.path.join(run_artifacts_path, "outputs")
|
108
108
|
resolved_contexts[ctx_sections.GLOBALS][
|
109
109
|
ctx_keys.RUN_ARTIFACTS_PATH
|
110
|
-
] = run_artifacts_path
|
110
|
+
] = run_artifacts_path # fmt: skip
|
111
111
|
resolved_contexts[ctx_sections.GLOBALS][
|
112
112
|
ctx_keys.RUN_OUTPUTS_PATH
|
113
|
-
] = run_outputs_path
|
113
|
+
] = run_outputs_path # fmt: skip
|
114
114
|
|
115
115
|
if plugins.mount_artifacts_store and artifacts_store:
|
116
116
|
resolved_contexts[ctx_sections.GLOBALS][
|
117
117
|
ctx_keys.STORE_PATH
|
118
|
-
] = artifacts_store.store_path
|
118
|
+
] = artifacts_store.store_path # fmt: skip
|
119
119
|
return resolved_contexts
|
120
120
|
|
121
121
|
|
@@ -21,7 +21,7 @@ class DaskJobContextsManager(BaseContextsManager):
|
|
21
21
|
) -> Dict:
|
22
22
|
contexts["init"] = {}
|
23
23
|
contexts["connections"] = {}
|
24
|
-
job = compiled_operation.run
|
24
|
+
job: V1DaskJob = compiled_operation.run
|
25
25
|
|
26
26
|
def _get_replica(replica: Optional[V1DaskReplica]) -> Dict:
|
27
27
|
if not replica:
|
@@ -21,7 +21,7 @@ class MPIJobContextsManager(BaseContextsManager):
|
|
21
21
|
) -> Dict:
|
22
22
|
contexts["init"] = {}
|
23
23
|
contexts["connections"] = {}
|
24
|
-
job = compiled_operation.run
|
24
|
+
job: V1MPIJob = compiled_operation.run
|
25
25
|
|
26
26
|
def _get_replica(replica: Optional[V1KFReplica]) -> Dict:
|
27
27
|
if not replica:
|
@@ -21,7 +21,7 @@ class MXJobContextsManager(BaseContextsManager):
|
|
21
21
|
) -> Dict:
|
22
22
|
contexts["init"] = {}
|
23
23
|
contexts["connections"] = {}
|
24
|
-
job = compiled_operation.run
|
24
|
+
job: V1MXJob = compiled_operation.run
|
25
25
|
|
26
26
|
def _get_replica(replica: Optional[V1KFReplica]) -> Dict:
|
27
27
|
if not replica:
|
@@ -21,7 +21,7 @@ class PaddleJobContextsManager(BaseContextsManager):
|
|
21
21
|
) -> Dict:
|
22
22
|
contexts["init"] = {}
|
23
23
|
contexts["connections"] = {}
|
24
|
-
job = compiled_operation.run
|
24
|
+
job: V1PaddleJob = compiled_operation.run
|
25
25
|
|
26
26
|
def _get_replica(replica: Optional[V1KFReplica]) -> Dict:
|
27
27
|
if not replica:
|
@@ -21,7 +21,7 @@ class PytorchJobContextsManager(BaseContextsManager):
|
|
21
21
|
) -> Dict:
|
22
22
|
contexts["init"] = {}
|
23
23
|
contexts["connections"] = {}
|
24
|
-
job = compiled_operation.run
|
24
|
+
job: V1PytorchJob = compiled_operation.run
|
25
25
|
|
26
26
|
def _get_replica(replica: Optional[V1KFReplica]) -> Dict:
|
27
27
|
if not replica:
|
@@ -21,7 +21,7 @@ class TfJobContextsManager(BaseContextsManager):
|
|
21
21
|
) -> Dict:
|
22
22
|
contexts["init"] = {}
|
23
23
|
contexts["connections"] = {}
|
24
|
-
job = compiled_operation.run
|
24
|
+
job: V1TFJob = compiled_operation.run
|
25
25
|
|
26
26
|
def _get_replica(replica: Optional[V1KFReplica]) -> Dict:
|
27
27
|
if not replica:
|
@@ -21,7 +21,7 @@ class XGBoostJobContextsManager(BaseContextsManager):
|
|
21
21
|
) -> Dict:
|
22
22
|
contexts["init"] = {}
|
23
23
|
contexts["connections"] = {}
|
24
|
-
job = compiled_operation.run
|
24
|
+
job: V1XGBoostJob = compiled_operation.run
|
25
25
|
|
26
26
|
def _get_replica(replica: Optional[V1KFReplica]) -> Dict:
|
27
27
|
if not replica:
|
@@ -21,7 +21,7 @@ class RayJobContextsManager(BaseContextsManager):
|
|
21
21
|
) -> Dict:
|
22
22
|
contexts["init"] = {}
|
23
23
|
contexts["connections"] = {}
|
24
|
-
job = compiled_operation.run
|
24
|
+
job: V1RayJob = compiled_operation.run
|
25
25
|
|
26
26
|
def _get_replica(replica: Optional[V1RayReplica]) -> Dict:
|
27
27
|
if not replica:
|
@@ -71,7 +71,7 @@ class AgentResolver(BaseSchemaModel):
|
|
71
71
|
if agent_config.artifacts_store: # Resolve default artifacts store
|
72
72
|
self.connection_by_names[
|
73
73
|
agent_config.artifacts_store.name
|
74
|
-
] = agent_config.artifacts_store
|
74
|
+
] = agent_config.artifacts_store # fmt: skip
|
75
75
|
|
76
76
|
if (
|
77
77
|
compiled_operation.is_job_run
|
@@ -13,4 +13,6 @@ class UIConfig(BaseSchemaModel):
|
|
13
13
|
assets_version: Optional[StrictStr] = Field(alias="assetsVersion", default=None)
|
14
14
|
admin_enabled: Optional[bool] = Field(alias="adminEnabled", default=None)
|
15
15
|
single_url: Optional[bool] = Field(alias="singleUrl", default=None)
|
16
|
-
default_streams_url: Optional[StrictStr] = Field(
|
16
|
+
default_streams_url: Optional[StrictStr] = Field(
|
17
|
+
alias="defaultStreamsUrl", default=None
|
18
|
+
)
|
@@ -162,7 +162,7 @@ class BaseConverter(
|
|
162
162
|
if memory:
|
163
163
|
docker_resources[
|
164
164
|
"memory"
|
165
|
-
] = docker_types.V1ResourceRequirements.from_k8s_memory(memory)
|
165
|
+
] = docker_types.V1ResourceRequirements.from_k8s_memory(memory) # fmt: skip
|
166
166
|
if gpus:
|
167
167
|
docker_resources["gpus"] = gpus
|
168
168
|
return docker_types.V1ResourceRequirements.from_dict(docker_resources)
|
@@ -18,7 +18,7 @@ class JobConverter(JobMixin, BaseConverter):
|
|
18
18
|
default_sa: Optional[str] = None,
|
19
19
|
default_auth: bool = False,
|
20
20
|
) -> List[docker_types.V1Container]:
|
21
|
-
job = compiled_operation.run
|
21
|
+
job: V1Job = compiled_operation.run
|
22
22
|
plugins = V1Plugins.get_or_create(
|
23
23
|
config=compiled_operation.plugins, auth=default_auth
|
24
24
|
)
|
@@ -4,7 +4,7 @@ from polyaxon._connections import V1Connection, V1ConnectionResource
|
|
4
4
|
from polyaxon._docker import docker_types
|
5
5
|
from polyaxon._docker.converter.base import BaseConverter
|
6
6
|
from polyaxon._docker.converter.mixins import ServiceMixin
|
7
|
-
from polyaxon._flow import V1CompiledOperation, V1Plugins
|
7
|
+
from polyaxon._flow import V1CompiledOperation, V1Plugins
|
8
8
|
|
9
9
|
|
10
10
|
class ServiceConverter(ServiceMixin, BaseConverter):
|
@@ -8,6 +8,7 @@ from clipped.compact.pydantic import (
|
|
8
8
|
validation_always,
|
9
9
|
validation_before,
|
10
10
|
)
|
11
|
+
from clipped.types import GenericStr
|
11
12
|
|
12
13
|
from polyaxon._k8s import k8s_schemas, k8s_validation
|
13
14
|
from polyaxon._schemas.base import BaseSchemaModel
|
@@ -395,9 +396,9 @@ class V1Environment(BaseSchemaModel):
|
|
395
396
|
"dnsConfig",
|
396
397
|
]
|
397
398
|
|
398
|
-
labels: Optional[Dict[StrictStr,
|
399
|
-
annotations: Optional[Dict[StrictStr,
|
400
|
-
node_selector: Optional[Dict[StrictStr,
|
399
|
+
labels: Optional[Dict[StrictStr, GenericStr]] = None
|
400
|
+
annotations: Optional[Dict[StrictStr, GenericStr]] = None
|
401
|
+
node_selector: Optional[Dict[StrictStr, GenericStr]] = Field(
|
401
402
|
alias="nodeSelector", default=None
|
402
403
|
)
|
403
404
|
affinity: Optional[Union[k8s_schemas.V1Affinity, Dict]] = None
|
@@ -428,7 +429,7 @@ class V1Environment(BaseSchemaModel):
|
|
428
429
|
priority: Optional[int] = None
|
429
430
|
restart_policy: Optional[
|
430
431
|
Literal["Always", "OnFailure", "Never", "ExitCode"]
|
431
|
-
] = Field(alias="restartPolicy", default=None)
|
432
|
+
] = Field(alias="restartPolicy", default=None) # fmt: skip
|
432
433
|
|
433
434
|
@field_validator("affinity", **validation_always, **validation_before)
|
434
435
|
def validate_affinity(cls, v):
|
@@ -1039,7 +1039,7 @@ class V1HpQLogUniform(BaseHpParamConfig):
|
|
1039
1039
|
kind: Literal[_IDENTIFIER] = _IDENTIFIER
|
1040
1040
|
value: Optional[
|
1041
1041
|
Union[QLogUniform, QLogUniformList, QLogUniformStr, RefField]
|
1042
|
-
] = None
|
1042
|
+
] = None # fmt: skip
|
1043
1043
|
|
1044
1044
|
@property
|
1045
1045
|
def is_distribution(self):
|
@@ -386,7 +386,7 @@ class V1Param(BaseSchemaModel, ctx_refs.RefMixin, ParamValueMixin):
|
|
386
386
|
|
387
387
|
_IDENTIFIER = "param"
|
388
388
|
|
389
|
-
value: Any
|
389
|
+
value: Optional[Any] = None
|
390
390
|
ref: Optional[StrictStr] = None
|
391
391
|
context_only: Optional[bool] = Field(alias="contextOnly", default=False)
|
392
392
|
connection: Optional[StrictStr] = None
|
@@ -479,7 +479,7 @@ class ParamSpec(
|
|
479
479
|
raise PolyaxonValidationError(
|
480
480
|
"Param `{}` with type `{}`, "
|
481
481
|
"cannot be turned to an init container automatically.".format(
|
482
|
-
self.name, self.type
|
482
|
+
self.name, self.type
|
483
483
|
)
|
484
484
|
)
|
485
485
|
|
@@ -444,7 +444,7 @@ class V1Dag(BaseRun):
|
|
444
444
|
for g_context in ctx_sections.GLOBALS_CONTEXTS:
|
445
445
|
self._context[
|
446
446
|
"dag.{}.{}".format(ctx_sections.GLOBALS, g_context)
|
447
|
-
] = V1IO.construct(name=g_context, type="str", value="", is_optional=True)
|
447
|
+
] = V1IO.construct(name=g_context, type="str", value="", is_optional=True) # fmt: skip
|
448
448
|
|
449
449
|
self._context["dag.{}".format(ctx_sections.INPUTS)] = V1IO.construct(
|
450
450
|
name="inputs", type="dict", value={}, is_optional=True
|
@@ -541,19 +541,19 @@ class V1Dag(BaseRun):
|
|
541
541
|
# We allow to resolve name, status, project, all outputs/inputs, iteration
|
542
542
|
self._context[
|
543
543
|
"ops.{}.{}".format(op_name, ctx_sections.INPUTS)
|
544
|
-
] = V1IO.construct(name="inputs", type="dict", value={}, is_optional=True)
|
544
|
+
] = V1IO.construct(name="inputs", type="dict", value={}, is_optional=True) # fmt: skip
|
545
545
|
self._context[
|
546
546
|
"ops.{}.{}".format(op_name, ctx_sections.OUTPUTS)
|
547
|
-
] = V1IO.construct(name="outputs", type="dict", value={}, is_optional=True)
|
547
|
+
] = V1IO.construct(name="outputs", type="dict", value={}, is_optional=True) # fmt: skip
|
548
548
|
self._context[
|
549
549
|
"ops.{}.{}".format(op_name, ctx_sections.GLOBALS)
|
550
|
-
] = V1IO.construct(name="globals", type="str", value="", is_optional=True)
|
550
|
+
] = V1IO.construct(name="globals", type="str", value="", is_optional=True) # fmt: skip
|
551
551
|
self._context[
|
552
552
|
"ops.{}.{}".format(op_name, ctx_sections.ARTIFACTS)
|
553
|
-
] = V1IO.construct(name="artifacts", type="str", value="", is_optional=True)
|
553
|
+
] = V1IO.construct(name="artifacts", type="str", value="", is_optional=True) # fmt: skip
|
554
554
|
self._context[
|
555
555
|
"ops.{}.{}".format(op_name, ctx_sections.INPUTS_OUTPUTS)
|
556
|
-
] = V1IO.construct(name="io", type="str", value={}, is_optional=True)
|
556
|
+
] = V1IO.construct(name="io", type="str", value={}, is_optional=True) # fmt: skip
|
557
557
|
|
558
558
|
for op in self.operations:
|
559
559
|
if op.has_component_reference:
|
@@ -18,7 +18,7 @@ def _get_fs_from_connection(
|
|
18
18
|
connection: Optional[V1Connection],
|
19
19
|
asynchronous: bool = False,
|
20
20
|
use_listings_cache: bool = False,
|
21
|
-
**kwargs
|
21
|
+
**kwargs,
|
22
22
|
):
|
23
23
|
# We assume that `None` refers to local store as well
|
24
24
|
if not connection or connection.kind in {
|
@@ -73,7 +73,7 @@ class ContainerMixin(BaseConverter):
|
|
73
73
|
|
74
74
|
@staticmethod
|
75
75
|
def _sanitize_resources(
|
76
|
-
resources: Union[k8s_schemas.V1ResourceRequirements, Dict]
|
76
|
+
resources: Union[k8s_schemas.V1ResourceRequirements, Dict],
|
77
77
|
) -> Optional[k8s_schemas.V1ResourceRequirements]:
|
78
78
|
def validate_resources(r_field: Dict) -> Dict:
|
79
79
|
if not r_field:
|
@@ -20,7 +20,7 @@ class DaskJobConverter(DaskJobMixin, BaseConverter):
|
|
20
20
|
default_sa: Optional[str] = None,
|
21
21
|
default_auth: bool = False,
|
22
22
|
) -> Dict:
|
23
|
-
job = compiled_operation.run
|
23
|
+
job: V1DaskJob = compiled_operation.run
|
24
24
|
|
25
25
|
def _get_replica(replica: Optional[V1DaskReplica]) -> Optional[ReplicaSpec]:
|
26
26
|
if not replica:
|
@@ -18,7 +18,7 @@ class JobConverter(JobMixin, BaseConverter):
|
|
18
18
|
default_sa: Optional[str] = None,
|
19
19
|
default_auth: bool = False,
|
20
20
|
) -> Dict:
|
21
|
-
job = compiled_operation.run
|
21
|
+
job: V1Job = compiled_operation.run
|
22
22
|
plugins = V1Plugins.get_or_create(
|
23
23
|
config=compiled_operation.plugins, auth=default_auth
|
24
24
|
)
|
@@ -20,7 +20,7 @@ class MPIJobConverter(MPIJobMixin, BaseConverter):
|
|
20
20
|
default_sa: Optional[str] = None,
|
21
21
|
default_auth: bool = False,
|
22
22
|
) -> Dict:
|
23
|
-
job = compiled_operation.run
|
23
|
+
job: V1MPIJob = compiled_operation.run
|
24
24
|
|
25
25
|
def _get_replica(replica: Optional[V1KFReplica]) -> Optional[ReplicaSpec]:
|
26
26
|
if not replica:
|
@@ -20,7 +20,7 @@ class MXJobConverter(MXJobMixin, BaseConverter):
|
|
20
20
|
default_sa: Optional[str] = None,
|
21
21
|
default_auth: bool = False,
|
22
22
|
) -> Dict:
|
23
|
-
job = compiled_operation.run
|
23
|
+
job: V1MXJob = compiled_operation.run
|
24
24
|
|
25
25
|
def _get_replica(replica: Optional[V1KFReplica]) -> Optional[ReplicaSpec]:
|
26
26
|
if not replica:
|
{polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/converter/converters/kubeflow/paddle_job.py
RENAMED
@@ -20,7 +20,7 @@ class PaddleJobConverter(PaddleJobMixin, BaseConverter):
|
|
20
20
|
default_sa: Optional[str] = None,
|
21
21
|
default_auth: bool = False,
|
22
22
|
) -> Dict:
|
23
|
-
job = compiled_operation.run
|
23
|
+
job: V1PaddleJob = compiled_operation.run
|
24
24
|
|
25
25
|
def _get_replica(replica: Optional[V1KFReplica]) -> Optional[ReplicaSpec]:
|
26
26
|
if not replica:
|
{polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/converter/converters/kubeflow/pytroch_job.py
RENAMED
@@ -20,7 +20,7 @@ class PytorchJobConverter(PytorchJobMixin, BaseConverter):
|
|
20
20
|
default_sa: Optional[str] = None,
|
21
21
|
default_auth: bool = False,
|
22
22
|
) -> Dict:
|
23
|
-
job = compiled_operation.run
|
23
|
+
job: V1PytorchJob = compiled_operation.run
|
24
24
|
|
25
25
|
def _get_replica(replica: Optional[V1KFReplica]) -> Optional[ReplicaSpec]:
|
26
26
|
if not replica:
|
@@ -20,7 +20,7 @@ class TfJobConverter(TFJobMixin, BaseConverter):
|
|
20
20
|
default_sa: Optional[str] = None,
|
21
21
|
default_auth: bool = False,
|
22
22
|
) -> Dict:
|
23
|
-
job = compiled_operation.run
|
23
|
+
job: V1TFJob = compiled_operation.run
|
24
24
|
|
25
25
|
def _get_replica(replica: Optional[V1KFReplica]) -> Optional[ReplicaSpec]:
|
26
26
|
if not replica:
|
{polyaxon-2.6.0rc0 → polyaxon-2.6.1}/polyaxon/_k8s/converter/converters/kubeflow/xgboost_job.py
RENAMED
@@ -20,7 +20,7 @@ class XGBoostJobConverter(XGBoostJobMixin, BaseConverter):
|
|
20
20
|
default_sa: Optional[str] = None,
|
21
21
|
default_auth: bool = False,
|
22
22
|
) -> Dict:
|
23
|
-
job = compiled_operation.run
|
23
|
+
job: V1XGBoostJob = compiled_operation.run
|
24
24
|
|
25
25
|
def _get_replica(replica: Optional[V1KFReplica]) -> Optional[ReplicaSpec]:
|
26
26
|
if not replica:
|
@@ -1,6 +1,5 @@
|
|
1
1
|
from typing import Dict, Iterable, Optional
|
2
2
|
|
3
|
-
from clipped.utils.encoding import encode
|
4
3
|
from clipped.utils.json import orjson_dumps
|
5
4
|
|
6
5
|
from polyaxon import pkg
|
@@ -23,7 +22,7 @@ class RayJobConverter(RayJobMixin, BaseConverter):
|
|
23
22
|
default_sa: Optional[str] = None,
|
24
23
|
default_auth: bool = False,
|
25
24
|
) -> Dict:
|
26
|
-
job = compiled_operation.run
|
25
|
+
job: V1RayJob = compiled_operation.run
|
27
26
|
|
28
27
|
def _get_replica(replica: Optional[V1RayReplica]) -> Optional[ReplicaSpec]:
|
29
28
|
if not replica:
|
@@ -1,7 +1,7 @@
|
|
1
1
|
from typing import Dict, Iterable, Optional
|
2
2
|
|
3
3
|
from polyaxon._connections import V1Connection, V1ConnectionResource
|
4
|
-
from polyaxon._flow import V1CompiledOperation, V1Plugins
|
4
|
+
from polyaxon._flow import V1CompiledOperation, V1Plugins
|
5
5
|
from polyaxon._k8s.converter.base import BaseConverter
|
6
6
|
from polyaxon._k8s.converter.mixins import ServiceMixin
|
7
7
|
from polyaxon._k8s.custom_resources.service import get_service_custom_resource
|
@@ -24,13 +24,13 @@ def validate_k8s_affinity(value: Optional[Union[k8s_schemas.V1Affinity, Dict]]):
|
|
24
24
|
|
25
25
|
|
26
26
|
def validate_k8s_security_context(
|
27
|
-
value: Optional[Union[k8s_schemas.V1SecurityContext, Dict]]
|
27
|
+
value: Optional[Union[k8s_schemas.V1SecurityContext, Dict]],
|
28
28
|
):
|
29
29
|
return _validate_schema(value, k8s_schemas.V1SecurityContext)
|
30
30
|
|
31
31
|
|
32
32
|
def validate_k8s_pod_dns_config(
|
33
|
-
value: Optional[Union[k8s_schemas.V1PodDNSConfig, Dict]]
|
33
|
+
value: Optional[Union[k8s_schemas.V1PodDNSConfig, Dict]],
|
34
34
|
):
|
35
35
|
return _validate_schema(value, k8s_schemas.V1PodDNSConfig)
|
36
36
|
|
@@ -56,19 +56,19 @@ def validate_k8s_volume_mount(value: Optional[Union[k8s_schemas.V1VolumeMount, D
|
|
56
56
|
|
57
57
|
|
58
58
|
def validate_k8s_container_port(
|
59
|
-
value: Optional[Union[k8s_schemas.V1ContainerPort, Dict]]
|
59
|
+
value: Optional[Union[k8s_schemas.V1ContainerPort, Dict]],
|
60
60
|
):
|
61
61
|
return _validate_schema(value, k8s_schemas.V1ContainerPort)
|
62
62
|
|
63
63
|
|
64
64
|
def validate_k8s_resource_requirements(
|
65
|
-
value: Optional[Union[k8s_schemas.V1ResourceRequirements, Dict]]
|
65
|
+
value: Optional[Union[k8s_schemas.V1ResourceRequirements, Dict]],
|
66
66
|
):
|
67
67
|
return _validate_schema(value, k8s_schemas.V1ResourceRequirements)
|
68
68
|
|
69
69
|
|
70
70
|
def validate_k8s_env_from_source(
|
71
|
-
value: Optional[Union[k8s_schemas.V1EnvFromSource, Dict]]
|
71
|
+
value: Optional[Union[k8s_schemas.V1EnvFromSource, Dict]],
|
72
72
|
):
|
73
73
|
return _validate_schema(value, k8s_schemas.V1EnvFromSource)
|
74
74
|
|
@@ -78,25 +78,25 @@ def validate_k8s_volume(value: Optional[Union[k8s_schemas.V1Volume, Dict]]):
|
|
78
78
|
|
79
79
|
|
80
80
|
def validate_k8s_object_field_selector(
|
81
|
-
value: Optional[Union[k8s_schemas.V1ObjectFieldSelector, Dict]]
|
81
|
+
value: Optional[Union[k8s_schemas.V1ObjectFieldSelector, Dict]],
|
82
82
|
):
|
83
83
|
return _validate_schema(value, k8s_schemas.V1ObjectFieldSelector)
|
84
84
|
|
85
85
|
|
86
86
|
def validate_k8s_env_var_source(
|
87
|
-
value: Optional[Union[k8s_schemas.V1EnvVarSource, Dict]]
|
87
|
+
value: Optional[Union[k8s_schemas.V1EnvVarSource, Dict]],
|
88
88
|
):
|
89
89
|
return _validate_schema(value, k8s_schemas.V1EnvVarSource)
|
90
90
|
|
91
91
|
|
92
92
|
def validate_k8s_config_map_selector(
|
93
|
-
value: Optional[Union[k8s_schemas.V1ConfigMapKeySelector, Dict]]
|
93
|
+
value: Optional[Union[k8s_schemas.V1ConfigMapKeySelector, Dict]],
|
94
94
|
):
|
95
95
|
return _validate_schema(value, k8s_schemas.V1ConfigMapKeySelector)
|
96
96
|
|
97
97
|
|
98
98
|
def validate_k8s_secret_selector(
|
99
|
-
value: Optional[Union[k8s_schemas.V1SecretKeySelector, Dict]]
|
99
|
+
value: Optional[Union[k8s_schemas.V1SecretKeySelector, Dict]],
|
100
100
|
):
|
101
101
|
return _validate_schema(value, k8s_schemas.V1SecretKeySelector)
|
102
102
|
|
@@ -110,42 +110,42 @@ def validate_k8s_object_meta(value: Optional[Union[k8s_schemas.V1ObjectMeta, Dic
|
|
110
110
|
|
111
111
|
|
112
112
|
def validate_k8s_pod_template_spec(
|
113
|
-
value: Optional[Union[k8s_schemas.V1PodTemplateSpec, Dict]]
|
113
|
+
value: Optional[Union[k8s_schemas.V1PodTemplateSpec, Dict]],
|
114
114
|
):
|
115
115
|
return _validate_schema(value, k8s_schemas.V1PodTemplateSpec)
|
116
116
|
|
117
117
|
|
118
118
|
def validate_k8s_host_path_volume_source(
|
119
|
-
value: Optional[Union[k8s_schemas.V1HostPathVolumeSource, Dict]]
|
119
|
+
value: Optional[Union[k8s_schemas.V1HostPathVolumeSource, Dict]],
|
120
120
|
):
|
121
121
|
return _validate_schema(value, k8s_schemas.V1HostPathVolumeSource)
|
122
122
|
|
123
123
|
|
124
124
|
def validate_k8s_empty_dir_volume_source(
|
125
|
-
value: Optional[Union[k8s_schemas.V1EmptyDirVolumeSource, Dict]]
|
125
|
+
value: Optional[Union[k8s_schemas.V1EmptyDirVolumeSource, Dict]],
|
126
126
|
):
|
127
127
|
return _validate_schema(value, k8s_schemas.V1EmptyDirVolumeSource)
|
128
128
|
|
129
129
|
|
130
130
|
def validate_k8s_persistent_volume_claim_volume_source(
|
131
|
-
value: Optional[Union[k8s_schemas.V1PersistentVolumeClaimVolumeSource, Dict]]
|
131
|
+
value: Optional[Union[k8s_schemas.V1PersistentVolumeClaimVolumeSource, Dict]],
|
132
132
|
):
|
133
133
|
return _validate_schema(value, k8s_schemas.V1PersistentVolumeClaimVolumeSource)
|
134
134
|
|
135
135
|
|
136
136
|
def validate_k8s_secret_volume_source(
|
137
|
-
value: Optional[Union[k8s_schemas.V1SecretVolumeSource, Dict]]
|
137
|
+
value: Optional[Union[k8s_schemas.V1SecretVolumeSource, Dict]],
|
138
138
|
):
|
139
139
|
return _validate_schema(value, k8s_schemas.V1SecretVolumeSource)
|
140
140
|
|
141
141
|
|
142
142
|
def validate_k8s_config_map_volume_source(
|
143
|
-
value: Optional[Union[k8s_schemas.V1ConfigMapVolumeSource, Dict]]
|
143
|
+
value: Optional[Union[k8s_schemas.V1ConfigMapVolumeSource, Dict]],
|
144
144
|
):
|
145
145
|
return _validate_schema(value, k8s_schemas.V1ConfigMapVolumeSource)
|
146
146
|
|
147
147
|
|
148
148
|
def validate_k8s_local_object_reference(
|
149
|
-
value: Optional[Union[k8s_schemas.V1LocalObjectReference, Dict]]
|
149
|
+
value: Optional[Union[k8s_schemas.V1LocalObjectReference, Dict]],
|
150
150
|
):
|
151
151
|
return _validate_schema(value, k8s_schemas.V1LocalObjectReference)
|
@@ -203,7 +203,7 @@ async def get_op_spec(
|
|
203
203
|
for pod in pods or []:
|
204
204
|
pods_list[
|
205
205
|
pod.metadata.name
|
206
|
-
] = k8s_manager.api_client.sanitize_for_serialization(pod)
|
206
|
+
] = k8s_manager.api_client.sanitize_for_serialization(pod) # fmt: skip
|
207
207
|
pods_list[pod.metadata.name]["events"] = await get_resource_events(
|
208
208
|
k8s_manager=k8s_manager,
|
209
209
|
resource_type="Pod",
|
@@ -213,7 +213,7 @@ async def get_op_spec(
|
|
213
213
|
for service in services or []:
|
214
214
|
services_list[
|
215
215
|
service.metadata.name
|
216
|
-
] = k8s_manager.api_client.sanitize_for_serialization(service)
|
216
|
+
] = k8s_manager.api_client.sanitize_for_serialization(service) # fmt: skip
|
217
217
|
services_list[service.metadata.name]["events"] = await get_resource_events(
|
218
218
|
k8s_manager=k8s_manager,
|
219
219
|
resource_type="Service",
|
@@ -245,7 +245,7 @@ async def get_agent_spec(
|
|
245
245
|
for pod in pods or []:
|
246
246
|
pods_list[
|
247
247
|
pod.metadata.name
|
248
|
-
] = k8s_manager.api_client.sanitize_for_serialization(pod)
|
248
|
+
] = k8s_manager.api_client.sanitize_for_serialization(pod) # fmt: skip
|
249
249
|
pods_list[pod.metadata.name]["events"] = await get_resource_events(
|
250
250
|
k8s_manager=k8s_manager,
|
251
251
|
resource_type="Pod",
|
@@ -256,7 +256,7 @@ async def get_agent_spec(
|
|
256
256
|
for service in services or []:
|
257
257
|
services_list[
|
258
258
|
service.metadata.name
|
259
|
-
] = k8s_manager.api_client.sanitize_for_serialization(service)
|
259
|
+
] = k8s_manager.api_client.sanitize_for_serialization(service) # fmt: skip
|
260
260
|
services_list[service.metadata.name]["events"] = await get_resource_events(
|
261
261
|
k8s_manager=k8s_manager,
|
262
262
|
resource_type="Service",
|