anyscale 0.26.6__py3-none-any.whl → 0.26.8__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/models.md +2 -2
- anyscale/anyscale-cloud-setup-gcp-oa.yaml +0 -1
- anyscale/anyscale-cloud-setup-gcp.yaml +0 -2
- anyscale/client/README.md +1 -8
- anyscale/client/openapi_client/__init__.py +1 -4
- anyscale/client/openapi_client/api/default_api.py +0 -454
- anyscale/client/openapi_client/models/__init__.py +1 -4
- anyscale/client/openapi_client/models/baseimagesenum.py +67 -1
- anyscale/client/openapi_client/models/job_details.py +27 -1
- anyscale/client/openapi_client/models/metric.py +29 -3
- anyscale/client/openapi_client/models/{verify_response.py → operator_metric_id.py} +39 -38
- anyscale/client/openapi_client/models/operator_metrics.py +30 -3
- anyscale/client/openapi_client/models/supportedbaseimagesenum.py +67 -1
- anyscale/sdk/anyscale_client/models/baseimagesenum.py +67 -1
- anyscale/sdk/anyscale_client/models/supportedbaseimagesenum.py +67 -1
- anyscale/shared_anyscale_utils/latest_ray_version.py +1 -1
- anyscale/version.py +1 -1
- {anyscale-0.26.6.dist-info → anyscale-0.26.8.dist-info}/METADATA +1 -1
- {anyscale-0.26.6.dist-info → anyscale-0.26.8.dist-info}/RECORD +25 -28
- anyscale/client/openapi_client/models/projects_violating_tree_hierarchy_response.py +0 -121
- anyscale/client/openapi_client/models/projectsviolatingtreehierarchyresponse_response.py +0 -121
- anyscale/client/openapi_client/models/verifyresponse_response.py +0 -121
- {anyscale-0.26.6.dist-info → anyscale-0.26.8.dist-info}/LICENSE +0 -0
- {anyscale-0.26.6.dist-info → anyscale-0.26.8.dist-info}/NOTICE +0 -0
- {anyscale-0.26.6.dist-info → anyscale-0.26.8.dist-info}/WHEEL +0 -0
- {anyscale-0.26.6.dist-info → anyscale-0.26.8.dist-info}/entry_points.txt +0 -0
- {anyscale-0.26.6.dist-info → anyscale-0.26.8.dist-info}/top_level.txt +0 -0
@@ -49,7 +49,7 @@ from anyscale.utils.workspace_notification import WorkspaceNotification
|
|
49
49
|
# Maybe just make it part of the release process to update it, or fetch the
|
50
50
|
# default builds and get the latest one. The best thing to do is probably
|
51
51
|
# to populate this in the backend.
|
52
|
-
DEFAULT_RAY_VERSION = "2.
|
52
|
+
DEFAULT_RAY_VERSION = "2.44.0" # RAY_RELEASE_UPDATE: update to latest version.
|
53
53
|
DEFAULT_PYTHON_VERSION = "py311"
|
54
54
|
RUNTIME_ENV_PACKAGE_FORMAT = "pkg_{content_hash}.zip"
|
55
55
|
|