anyscale 0.26.42__py3-none-any.whl → 0.26.44__py3-none-any.whl
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.
- anyscale/_private/anyscale_client/common.py +1 -1
- anyscale/_private/docgen/__main__.py +2 -0
- anyscale/_private/docgen/models.md +2 -2
- anyscale/_private/workload/workload_sdk.py +6 -0
- anyscale/client/README.md +7 -0
- anyscale/client/openapi_client/__init__.py +6 -0
- anyscale/client/openapi_client/api/default_api.py +132 -0
- anyscale/client/openapi_client/models/__init__.py +6 -0
- anyscale/client/openapi_client/models/baseimagesenum.py +68 -1
- anyscale/client/openapi_client/models/describe_machine_pool_machines_filters.py +150 -0
- anyscale/client/openapi_client/models/describe_machine_pool_machines_request.py +31 -3
- anyscale/client/openapi_client/models/describe_machine_pool_requests_request.py +31 -3
- anyscale/client/openapi_client/models/describe_machine_pool_workloads_filters.py +150 -0
- anyscale/client/openapi_client/models/describe_machine_pool_workloads_request.py +151 -0
- anyscale/client/openapi_client/models/file_storage.py +33 -5
- anyscale/client/openapi_client/models/supportedbaseimagesenum.py +68 -1
- anyscale/client/openapi_client/models/workload_machine_info.py +210 -0
- anyscale/client/openapi_client/models/workload_state_info.py +295 -0
- anyscale/client/openapi_client/models/workloadstateinfo_list_response.py +147 -0
- anyscale/commands/cloud_commands.py +1 -0
- anyscale/commands/compute_config_commands.py +10 -3
- anyscale/compute_config/__init__.py +16 -0
- anyscale/compute_config/_private/compute_config_sdk.py +176 -61
- anyscale/compute_config/commands.py +66 -1
- anyscale/compute_config/models.py +160 -3
- anyscale/conf.py +1 -1
- anyscale/controllers/cloud_controller.py +149 -9
- anyscale/job/_private/job_sdk.py +22 -0
- anyscale/sdk/anyscale_client/models/baseimagesenum.py +68 -1
- anyscale/sdk/anyscale_client/models/supportedbaseimagesenum.py +68 -1
- anyscale/shared_anyscale_utils/latest_ray_version.py +1 -1
- anyscale/version.py +1 -1
- {anyscale-0.26.42.dist-info → anyscale-0.26.44.dist-info}/METADATA +16 -16
- {anyscale-0.26.42.dist-info → anyscale-0.26.44.dist-info}/RECORD +39 -33
- {anyscale-0.26.42.dist-info → anyscale-0.26.44.dist-info}/LICENSE +0 -0
- {anyscale-0.26.42.dist-info → anyscale-0.26.44.dist-info}/NOTICE +0 -0
- {anyscale-0.26.42.dist-info → anyscale-0.26.44.dist-info}/WHEEL +0 -0
- {anyscale-0.26.42.dist-info → anyscale-0.26.44.dist-info}/entry_points.txt +0 -0
- {anyscale-0.26.42.dist-info → anyscale-0.26.44.dist-info}/top_level.txt +0 -0
|
@@ -55,7 +55,7 @@ from anyscale.utils.workspace_notification import WorkspaceNotification
|
|
|
55
55
|
# Maybe just make it part of the release process to update it, or fetch the
|
|
56
56
|
# default builds and get the latest one. The best thing to do is probably
|
|
57
57
|
# to populate this in the backend.
|
|
58
|
-
DEFAULT_RAY_VERSION = "2.
|
|
58
|
+
DEFAULT_RAY_VERSION = "2.48.0" # RAY_RELEASE_UPDATE: update to latest version.
|
|
59
59
|
DEFAULT_PYTHON_VERSION = "py311"
|
|
60
60
|
RUNTIME_ENV_PACKAGE_FORMAT = "pkg_{content_hash}.zip"
|
|
61
61
|
|
|
@@ -46,6 +46,7 @@ from anyscale.compute_config.models import (
|
|
|
46
46
|
ComputeConfigVersion,
|
|
47
47
|
HeadNodeConfig,
|
|
48
48
|
MarketType,
|
|
49
|
+
MultiDeploymentComputeConfig,
|
|
49
50
|
WorkerNodeGroupConfig,
|
|
50
51
|
)
|
|
51
52
|
from anyscale.image.models import ImageBuild, ImageBuildStatus
|
|
@@ -318,6 +319,7 @@ ALL_MODULES = [
|
|
|
318
319
|
WorkerNodeGroupConfig,
|
|
319
320
|
MarketType,
|
|
320
321
|
CloudDeployment,
|
|
322
|
+
MultiDeploymentComputeConfig,
|
|
321
323
|
ComputeConfigVersion,
|
|
322
324
|
],
|
|
323
325
|
legacy_sdk_commands={
|